blob: 8c856d24538cd40e92a126004c450d65b4aaf41e [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"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
David Chinnereb01c9c2008-04-10 12:18:46 +100045kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define xlog_write_adv_cnt(ptr, len, off, bytes) \
48 { (ptr) += (bytes); \
49 (len) -= (bytes); \
50 (off) += (bytes);}
51
52/* Local miscellaneous function prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053STATIC 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[],
Christoph Hellwig35a8a722010-02-15 23:34:54 +000063 int nentries, struct xlog_ticket *tic,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
83
84/* local functions to manipulate grant head */
85STATIC int xlog_grant_log_space(xlog_t *log,
86 xlog_ticket_t *xtic);
87STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
88 int need_bytes);
89STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
90 xlog_ticket_t *ticket);
91STATIC int xlog_regrant_write_log_space(xlog_t *log,
92 xlog_ticket_t *ticket);
93STATIC void xlog_ungrant_log_space(xlog_t *log,
94 xlog_ticket_t *ticket);
95
96
97/* local ticket functions */
Dave Chinnercc09c0d2008-11-17 17:37:10 +110098STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int unit_bytes,
100 int count,
101 char clientid,
102 uint flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100104#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105STATIC void xlog_verify_dest_ptr(xlog_t *log, __psint_t ptr);
106STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
107STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
108 int count, boolean_t syncing);
109STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
110 xfs_lsn_t tail_lsn);
111#else
112#define xlog_verify_dest_ptr(a,b)
113#define xlog_verify_grant_head(a,b)
114#define xlog_verify_iclog(a,b,c,d)
115#define xlog_verify_tail_lsn(a,b,c)
116#endif
117
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000118STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100120
121static void
122xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
123{
124 if (*qp) {
125 tic->t_next = (*qp);
126 tic->t_prev = (*qp)->t_prev;
127 (*qp)->t_prev->t_next = tic;
128 (*qp)->t_prev = tic;
129 } else {
130 tic->t_prev = tic->t_next = tic;
131 *qp = tic;
132 }
133
134 tic->t_flags |= XLOG_TIC_IN_Q;
135}
136
137static void
138xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
139{
140 if (tic == tic->t_next) {
141 *qp = NULL;
142 } else {
143 *qp = tic->t_next;
144 tic->t_next->t_prev = tic->t_prev;
145 tic->t_prev->t_next = tic->t_next;
146 }
147
148 tic->t_next = tic->t_prev = NULL;
149 tic->t_flags &= ~XLOG_TIC_IN_Q;
150}
151
152static void
153xlog_grant_sub_space(struct log *log, int bytes)
154{
155 log->l_grant_write_bytes -= bytes;
156 if (log->l_grant_write_bytes < 0) {
157 log->l_grant_write_bytes += log->l_logsize;
158 log->l_grant_write_cycle--;
159 }
160
161 log->l_grant_reserve_bytes -= bytes;
162 if ((log)->l_grant_reserve_bytes < 0) {
163 log->l_grant_reserve_bytes += log->l_logsize;
164 log->l_grant_reserve_cycle--;
165 }
166
167}
168
169static void
170xlog_grant_add_space_write(struct log *log, int bytes)
171{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000172 int tmp = log->l_logsize - log->l_grant_write_bytes;
173 if (tmp > bytes)
174 log->l_grant_write_bytes += bytes;
175 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100176 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000177 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100178 }
179}
180
181static void
182xlog_grant_add_space_reserve(struct log *log, int bytes)
183{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000184 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
185 if (tmp > bytes)
186 log->l_grant_reserve_bytes += bytes;
187 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100188 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000189 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100190 }
191}
192
193static inline void
194xlog_grant_add_space(struct log *log, int bytes)
195{
196 xlog_grant_add_space_write(log, bytes);
197 xlog_grant_add_space_reserve(log, bytes);
198}
199
Christoph Hellwig0adba532007-08-30 17:21:46 +1000200static void
201xlog_tic_reset_res(xlog_ticket_t *tic)
202{
203 tic->t_res_num = 0;
204 tic->t_res_arr_sum = 0;
205 tic->t_res_num_ophdrs = 0;
206}
207
208static void
209xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
210{
211 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
212 /* add to overflow and start again */
213 tic->t_res_o_flow += tic->t_res_arr_sum;
214 tic->t_res_num = 0;
215 tic->t_res_arr_sum = 0;
216 }
217
218 tic->t_res_arr[tic->t_res_num].r_len = len;
219 tic->t_res_arr[tic->t_res_num].r_type = type;
220 tic->t_res_arr_sum += len;
221 tic->t_res_num++;
222}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*
225 * NOTES:
226 *
227 * 1. currblock field gets updated at startup and after in-core logs
228 * marked as with WANT_SYNC.
229 */
230
231/*
232 * This routine is called when a user of a log manager ticket is done with
233 * the reservation. If the ticket was ever used, then a commit record for
234 * the associated transaction is written out as a log operation header with
235 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
236 * a given ticket. If the ticket was one with a permanent reservation, then
237 * a few operations are done differently. Permanent reservation tickets by
238 * default don't release the reservation. They just commit the current
239 * transaction with the belief that the reservation is still needed. A flag
240 * must be passed in before permanent reservations are actually released.
241 * When these type of tickets are not released, they need to be set into
242 * the inited state again. By doing this, a start record will be written
243 * out when the next write occurs.
244 */
245xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000246xfs_log_done(
247 struct xfs_mount *mp,
248 struct xlog_ticket *ticket,
249 struct xlog_in_core **iclog,
250 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000252 struct log *log = mp->m_log;
253 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (XLOG_FORCED_SHUTDOWN(log) ||
256 /*
257 * If nothing was ever written, don't write out commit record.
258 * If we get an error, just continue and give back the log ticket.
259 */
260 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000261 (xlog_commit_record(mp, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 lsn = (xfs_lsn_t) -1;
263 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
264 flags |= XFS_LOG_REL_PERM_RESERV;
265 }
266 }
267
268
269 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
270 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000271 trace_xfs_log_done_nonperm(log, ticket);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000274 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * request has been made to release a permanent reservation.
276 */
277 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100278 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000280 trace_xfs_log_done_perm(log, ticket);
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000283 /* If this ticket was a permanent reservation and we aren't
284 * trying to release it, reset the inited flags; so next time
285 * we write, a start record will be written out.
286 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000291}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*
294 * Attaches a new iclog I/O completion callback routine during
295 * transaction commit. If the log is in error state, a non-zero
296 * return code is handed back and the caller is responsible for
297 * executing the callback at an appropriate time.
298 */
299int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000300xfs_log_notify(
301 struct xfs_mount *mp,
302 struct xlog_in_core *iclog,
303 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000305 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
David Chinner114d23a2008-04-10 12:18:39 +1000307 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
309 if (!abortflg) {
310 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
311 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
312 cb->cb_next = NULL;
313 *(iclog->ic_callback_tail) = cb;
314 iclog->ic_callback_tail = &(cb->cb_next);
315 }
David Chinner114d23a2008-04-10 12:18:39 +1000316 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000318}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000321xfs_log_release_iclog(
322 struct xfs_mount *mp,
323 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000325 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000326 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100327 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
330 return 0;
331}
332
333/*
334 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
335 * to the reservation.
336 * 2. Potentially, push buffers at tail of log to disk.
337 *
338 * Each reservation is going to reserve extra space for a log record header.
339 * When writes happen to the on-disk log, we don't subtract the length of the
340 * log record header from any reservation. By wasting space in each
341 * reservation, we prevent over allocation problems.
342 */
343int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000344xfs_log_reserve(
345 struct xfs_mount *mp,
346 int unit_bytes,
347 int cnt,
348 struct xlog_ticket **ticket,
349 __uint8_t client,
350 uint flags,
351 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000353 struct log *log = mp->m_log;
354 struct xlog_ticket *internal_ticket;
355 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
358 ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
359
360 if (XLOG_FORCED_SHUTDOWN(log))
361 return XFS_ERROR(EIO);
362
363 XFS_STATS_INC(xs_try_logspace);
364
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (*ticket != NULL) {
367 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000368 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000369
370 trace_xfs_log_reserve(log, internal_ticket);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
373 retval = xlog_regrant_write_log_space(log, internal_ticket);
374 } else {
375 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100376 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 client, flags);
David Chinnereb01c9c2008-04-10 12:18:46 +1000378 if (!internal_ticket)
379 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000380 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000382
383 trace_xfs_log_reserve(log, internal_ticket);
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 xlog_grant_push_ail(mp,
386 (internal_ticket->t_unit_res *
387 internal_ticket->t_cnt));
388 retval = xlog_grant_log_space(log, internal_ticket);
389 }
390
391 return retval;
392} /* xfs_log_reserve */
393
394
395/*
396 * Mount a log filesystem
397 *
398 * mp - ubiquitous xfs mount point structure
399 * log_target - buftarg of on-disk log device
400 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
401 * num_bblocks - Number of BBSIZE blocks in on-disk log
402 *
403 * Return error or zero.
404 */
405int
David Chinner249a8c12008-02-05 12:13:32 +1100406xfs_log_mount(
407 xfs_mount_t *mp,
408 xfs_buftarg_t *log_target,
409 xfs_daddr_t blk_offset,
410 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
David Chinner249a8c12008-02-05 12:13:32 +1100412 int error;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
415 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
416 else {
417 cmn_err(CE_NOTE,
418 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
419 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000420 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200424 if (IS_ERR(mp->m_log)) {
425 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100426 goto out;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /*
David Chinner249a8c12008-02-05 12:13:32 +1100430 * Initialize the AIL now we have a log.
431 */
David Chinner249a8c12008-02-05 12:13:32 +1100432 error = xfs_trans_ail_init(mp);
433 if (error) {
434 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100435 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100436 }
David Chinnera9c21c12008-10-30 17:39:35 +1100437 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100438
439 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * skip log recovery on a norecovery mount. pretend it all
441 * just worked.
442 */
443 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100444 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000447 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Eric Sandeen65be6052006-01-11 15:34:19 +1100449 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000452 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (error) {
454 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100455 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457 }
458
459 /* Normal transactions can now occur */
460 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100463
464out_destroy_ail:
465 xfs_trans_ail_destroy(mp);
466out_free_log:
467 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100468out:
David Chinner249a8c12008-02-05 12:13:32 +1100469 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100470}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472/*
473 * Finish the recovery of the file system. This is separate from
474 * the xfs_log_mount() call, because it depends on the code in
475 * xfs_mountfs() to read in the root and real-time bitmap inodes
476 * between calling xfs_log_mount() and here.
477 *
478 * mp - ubiquitous xfs mount point structure
479 */
480int
Christoph Hellwig42490232008-08-13 16:49:32 +1000481xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 int error;
484
485 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000486 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 else {
488 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000489 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
492 return error;
493}
494
495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * Final log writes as part of unmount.
497 *
498 * Mark the filesystem clean as unmount happens. Note that during relocation
499 * this routine needs to be executed as part of source-bag while the
500 * deallocation must not be done until source-end.
501 */
502
503/*
504 * Unmount record used to have a string "Unmount filesystem--" in the
505 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
506 * We just write the magic number now since that particular field isn't
507 * currently architecture converted and "nUmount" is a bit foo.
508 * As far as I know, there weren't any dependencies on the old behaviour.
509 */
510
511int
512xfs_log_unmount_write(xfs_mount_t *mp)
513{
514 xlog_t *log = mp->m_log;
515 xlog_in_core_t *iclog;
516#ifdef DEBUG
517 xlog_in_core_t *first_iclog;
518#endif
519 xfs_log_iovec_t reg[1];
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000520 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 xfs_lsn_t lsn;
522 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* the data section must be 32 bit size aligned */
525 struct {
526 __uint16_t magic;
527 __uint16_t pad1;
528 __uint32_t pad2; /* may as well make it 64 bits */
529 } magic = { XLOG_UNMOUNT_TYPE, 0, 0 };
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
532 * Don't write out unmount record on read-only mounts.
533 * Or, if we are doing a forced umount (typically because of IO errors).
534 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000535 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return 0;
537
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000538 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000539 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541#ifdef DEBUG
542 first_iclog = iclog = log->l_iclog;
543 do {
544 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
545 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
546 ASSERT(iclog->ic_offset == 0);
547 }
548 iclog = iclog->ic_next;
549 } while (iclog != first_iclog);
550#endif
551 if (! (XLOG_FORCED_SHUTDOWN(log))) {
552 reg[0].i_addr = (void*)&magic;
553 reg[0].i_len = sizeof(magic);
Christoph Hellwig4139b3b2010-01-19 09:56:45 +0000554 reg[0].i_type = XLOG_REG_TYPE_UNMOUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Tim Shimmin955e47a2006-09-28 11:04:16 +1000556 error = xfs_log_reserve(mp, 600, 1, &tic,
557 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (!error) {
559 /* remove inited flag */
560 ((xlog_ticket_t *)tic)->t_flags = 0;
561 error = xlog_write(mp, reg, 1, tic, &lsn,
562 NULL, XLOG_UNMOUNT_TRANS);
563 /*
564 * At this point, we're umounting anyway,
565 * so there's no point in transitioning log state
566 * to IOERROR. Just continue...
567 */
568 }
569
570 if (error) {
571 xfs_fs_cmn_err(CE_ALERT, mp,
572 "xfs_log_unmount: unmount record failed");
573 }
574
575
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000576 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100578 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100580 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000581 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000583 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
585 iclog->ic_state == XLOG_STATE_DIRTY)) {
586 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000587 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 &log->l_icloglock, s);
589 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000590 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000593 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000595 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000596 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000597 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100598 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 } else {
601 /*
602 * We're already in forced_shutdown mode, couldn't
603 * even attempt to write out the unmount transaction.
604 *
605 * Go through the motions of sync'ing and releasing
606 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000607 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * be in progress. Do this as a separate section of
609 * code so we'll know if we ever get stuck here that
610 * we're in this odd situation of trying to unmount
611 * a file system that went into forced_shutdown as
612 * the result of an unmount..
613 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000614 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100616 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100619 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000620 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000622 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
625 || iclog->ic_state == XLOG_STATE_DIRTY
626 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
627
David Chinner12017fa2008-08-13 16:34:31 +1000628 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 &log->l_icloglock, s);
630 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000631 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633 }
634
David Chinner1bb7d6b2008-04-10 12:24:38 +1000635 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636} /* xfs_log_unmount_write */
637
638/*
639 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100640 *
641 * We need to stop the aild from running before we destroy
642 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
644void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100645xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
David Chinner249a8c12008-02-05 12:13:32 +1100647 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000648 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Dave Chinner43f5efc2010-03-23 10:10:00 +1100651void
652xfs_log_item_init(
653 struct xfs_mount *mp,
654 struct xfs_log_item *item,
655 int type,
656 struct xfs_item_ops *ops)
657{
658 item->li_mountp = mp;
659 item->li_ailp = mp->m_ail;
660 item->li_type = type;
661 item->li_ops = ops;
662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/*
665 * Write region vectors to log. The write happens using the space reservation
666 * of the ticket (tic). It is not a requirement that all writes for a given
Dave Chinner9b9fc2b72010-03-23 11:21:11 +1100667 * transaction occur with one call to xfs_log_write(). However, it is important
668 * to note that the transaction reservation code makes an assumption about the
669 * number of log headers a transaction requires that may be violated if you
670 * don't pass all the transaction vectors in one call....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
672int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000673xfs_log_write(
674 struct xfs_mount *mp,
675 struct xfs_log_iovec reg[],
676 int nentries,
677 struct xlog_ticket *tic,
678 xfs_lsn_t *start_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000680 struct log *log = mp->m_log;
681 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (XLOG_FORCED_SHUTDOWN(log))
684 return XFS_ERROR(EIO);
685
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000686 error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0);
687 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +1000688 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100689 return error;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000690}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692void
693xfs_log_move_tail(xfs_mount_t *mp,
694 xfs_lsn_t tail_lsn)
695{
696 xlog_ticket_t *tic;
697 xlog_t *log = mp->m_log;
698 int need_bytes, free_bytes, cycle, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (XLOG_FORCED_SHUTDOWN(log))
701 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (tail_lsn == 0) {
704 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000705 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000707 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000710 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
713 * tail_lsn.
714 */
715 if (tail_lsn != 1) {
716 log->l_tail_lsn = tail_lsn;
717 }
718
719 if ((tic = log->l_write_headq)) {
720#ifdef DEBUG
721 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
722 panic("Recovery problem");
723#endif
724 cycle = log->l_grant_write_cycle;
725 bytes = log->l_grant_write_bytes;
726 free_bytes = xlog_space_left(log, cycle, bytes);
727 do {
728 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
729
730 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
731 break;
732 tail_lsn = 0;
733 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000734 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 tic = tic->t_next;
736 } while (tic != log->l_write_headq);
737 }
738 if ((tic = log->l_reserve_headq)) {
739#ifdef DEBUG
740 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
741 panic("Recovery problem");
742#endif
743 cycle = log->l_grant_reserve_cycle;
744 bytes = log->l_grant_reserve_bytes;
745 free_bytes = xlog_space_left(log, cycle, bytes);
746 do {
747 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
748 need_bytes = tic->t_unit_res*tic->t_cnt;
749 else
750 need_bytes = tic->t_unit_res;
751 if (free_bytes < need_bytes && tail_lsn != 1)
752 break;
753 tail_lsn = 0;
754 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000755 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 tic = tic->t_next;
757 } while (tic != log->l_reserve_headq);
758 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000759 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760} /* xfs_log_move_tail */
761
762/*
763 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000764 * that needs to be covered. To begin the transition to the idle state
765 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
766 * If we are then in a state where covering is needed, the caller is informed
767 * that dummy transactions are required to move the log into the idle state.
768 *
769 * Because this is called as part of the sync process, we should also indicate
770 * that dummy transactions should be issued in anything but the covered or
771 * idle states. This ensures that the log tail is accurately reflected in
772 * the log at the end of the sync, hence if a crash occurrs avoids replay
773 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
775int
776xfs_log_need_covered(xfs_mount_t *mp)
777{
David Chinner27d8d5f2008-10-30 17:38:39 +1100778 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
David Chinner92821e22007-05-24 15:26:31 +1000781 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return 0;
783
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000784 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000785 switch (log->l_covered_state) {
786 case XLOG_STATE_COVER_DONE:
787 case XLOG_STATE_COVER_DONE2:
788 case XLOG_STATE_COVER_IDLE:
789 break;
790 case XLOG_STATE_COVER_NEED:
791 case XLOG_STATE_COVER_NEED2:
792 if (!xfs_trans_ail_tail(log->l_ailp) &&
793 xlog_iclogs_empty(log)) {
794 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
795 log->l_covered_state = XLOG_STATE_COVER_DONE;
796 else
797 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000799 /* FALLTHRU */
800 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000802 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000804 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100805 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/******************************************************************************
809 *
810 * local routines
811 *
812 ******************************************************************************
813 */
814
815/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
816 * The log manager must keep track of the last LR which was committed
817 * to disk. The lsn of this LR will become the new tail_lsn whenever
818 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
819 * the situation where stuff could be written into the log but nothing
820 * was ever in the AIL when asked. Eventually, we panic since the
821 * tail hits the head.
822 *
823 * We may be holding the log iclog lock upon entering this routine.
824 */
825xfs_lsn_t
826xlog_assign_tail_lsn(xfs_mount_t *mp)
827{
828 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 xlog_t *log = mp->m_log;
830
David Chinner5b00f142008-10-30 17:39:00 +1100831 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000832 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (tail_lsn != 0) {
834 log->l_tail_lsn = tail_lsn;
835 } else {
836 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
837 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000838 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 return tail_lsn;
841} /* xlog_assign_tail_lsn */
842
843
844/*
845 * Return the space in the log between the tail and the head. The head
846 * is passed in the cycle/bytes formal parms. In the special case where
847 * the reserve head has wrapped passed the tail, this calculation is no
848 * longer valid. In this case, just return 0 which means there is no space
849 * in the log. This works for all places where this function is called
850 * with the reserve head. Of course, if the write head were to ever
851 * wrap the tail, we should blow up. Rather than catch this case here,
852 * we depend on other ASSERTions in other parts of the code. XXXmiken
853 *
854 * This code also handles the case where the reservation head is behind
855 * the tail. The details of this case are described below, but the end
856 * result is that we return the size of the log as the amount of space left.
857 */
David Chinnera8272ce2007-11-23 16:28:09 +1100858STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859xlog_space_left(xlog_t *log, int cycle, int bytes)
860{
861 int free_bytes;
862 int tail_bytes;
863 int tail_cycle;
864
865 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
866 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
867 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
868 free_bytes = log->l_logsize - (bytes - tail_bytes);
869 } else if ((tail_cycle + 1) < cycle) {
870 return 0;
871 } else if (tail_cycle < cycle) {
872 ASSERT(tail_cycle == (cycle - 1));
873 free_bytes = tail_bytes - bytes;
874 } else {
875 /*
876 * The reservation head is behind the tail.
877 * In this case we just want to return the size of the
878 * log as the amount of space left.
879 */
880 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
881 "xlog_space_left: head behind tail\n"
882 " tail_cycle = %d, tail_bytes = %d\n"
883 " GH cycle = %d, GH bytes = %d",
884 tail_cycle, tail_bytes, cycle, bytes);
885 ASSERT(0);
886 free_bytes = log->l_logsize;
887 }
888 return free_bytes;
889} /* xlog_space_left */
890
891
892/*
893 * Log function which is called when an io completes.
894 *
895 * The log manager needs its own routine, in order to control what
896 * happens with the buffer after the write completes.
897 */
898void
899xlog_iodone(xfs_buf_t *bp)
900{
901 xlog_in_core_t *iclog;
902 xlog_t *l;
903 int aborted;
904
905 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
906 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
907 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
908 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 l = iclog->ic_log;
910
911 /*
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100912 * If the _XFS_BARRIER_FAILED flag was set by a lower
913 * layer, it means the underlying device no longer supports
David Chinner0bfefc42007-05-14 18:24:23 +1000914 * barrier I/O. Warn loudly and turn off barriers.
915 */
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100916 if (bp->b_flags & _XFS_BARRIER_FAILED) {
917 bp->b_flags &= ~_XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +1000918 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
919 xfs_fs_cmn_err(CE_WARN, l->l_mp,
920 "xlog_iodone: Barriers are no longer supported"
921 " by device. Disabling barriers\n");
David Chinner0bfefc42007-05-14 18:24:23 +1000922 }
923
924 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * Race to shutdown the filesystem if we see an error.
926 */
927 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
928 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
929 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
930 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000931 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /*
933 * This flag will be propagated to the trans-committed
934 * callback routines to let them know that the log-commit
935 * didn't succeed.
936 */
937 aborted = XFS_LI_ABORTED;
938 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
939 aborted = XFS_LI_ABORTED;
940 }
David Chinner3db296f2007-05-14 18:24:16 +1000941
942 /* log I/O is always issued ASYNC */
943 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000945 /*
946 * do not reference the buffer (bp) here as we could race
947 * with it being freed after writing the unmount record to the
948 * log.
949 */
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951} /* xlog_iodone */
952
953/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * Return size of each in-core log record buffer.
955 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200956 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 *
958 * If the filesystem blocksize is too large, we may need to choose a
959 * larger size since the directory code currently logs entire blocks.
960 */
961
962STATIC void
963xlog_get_iclog_buffer_size(xfs_mount_t *mp,
964 xlog_t *log)
965{
966 int size;
967 int xhdrs;
968
Eric Sandeen1cb51252007-08-16 16:24:43 +1000969 if (mp->m_logbufs <= 0)
970 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
971 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100972 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 /*
975 * Buffer size passed in from mount system call.
976 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100977 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 size = log->l_iclog_size = mp->m_logbsize;
979 log->l_iclog_size_log = 0;
980 while (size != 1) {
981 log->l_iclog_size_log++;
982 size >>= 1;
983 }
984
Eric Sandeen62118702008-03-06 13:44:28 +1100985 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200986 /* # headers = size / 32k
987 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
989
990 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
991 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
992 xhdrs++;
993 log->l_iclog_hsize = xhdrs << BBSHIFT;
994 log->l_iclog_heads = xhdrs;
995 } else {
996 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
997 log->l_iclog_hsize = BBSIZE;
998 log->l_iclog_heads = 1;
999 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001000 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001003 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +10001004 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1005 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 /* the default log size is 16k or 32k which is one header sector */
1008 log->l_iclog_hsize = BBSIZE;
1009 log->l_iclog_heads = 1;
1010
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001011done:
1012 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001013 if (mp->m_logbufs == 0)
1014 mp->m_logbufs = log->l_iclog_bufs;
1015 if (mp->m_logbsize == 0)
1016 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017} /* xlog_get_iclog_buffer_size */
1018
1019
1020/*
1021 * This routine initializes some of the log structure for a given mount point.
1022 * Its primary purpose is to fill in enough, so recovery can occur. However,
1023 * some other stuff may be filled in too.
1024 */
1025STATIC xlog_t *
1026xlog_alloc_log(xfs_mount_t *mp,
1027 xfs_buftarg_t *log_target,
1028 xfs_daddr_t blk_offset,
1029 int num_bblks)
1030{
1031 xlog_t *log;
1032 xlog_rec_header_t *head;
1033 xlog_in_core_t **iclogp;
1034 xlog_in_core_t *iclog, *prev_iclog=NULL;
1035 xfs_buf_t *bp;
1036 int i;
1037 int iclogsize;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001038 int error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Dave Chinner644c3562008-11-10 16:50:24 +11001040 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001041 if (!log) {
1042 xlog_warn("XFS: Log allocation failed: No memory!");
1043 goto out;
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 log->l_mp = mp;
1047 log->l_targ = log_target;
1048 log->l_logsize = BBTOB(num_bblks);
1049 log->l_logBBstart = blk_offset;
1050 log->l_logBBsize = num_bblks;
1051 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1052 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1053
1054 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001055 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1057 log->l_last_sync_lsn = log->l_tail_lsn;
1058 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1059 log->l_grant_reserve_cycle = 1;
1060 log->l_grant_write_cycle = 1;
1061
Dave Chinnera6cb7672009-04-06 18:39:27 +02001062 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001063 if (xfs_sb_version_hassector(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 log->l_sectbb_log = mp->m_sb.sb_logsectlog - BBSHIFT;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001065 if (log->l_sectbb_log < 0 ||
1066 log->l_sectbb_log > mp->m_sectbb_log) {
1067 xlog_warn("XFS: Log sector size (0x%x) out of range.",
1068 log->l_sectbb_log);
1069 goto out_free_log;
1070 }
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /* for larger sector sizes, must have v2 or external log */
Dave Chinnera6cb7672009-04-06 18:39:27 +02001073 if (log->l_sectbb_log != 0 &&
1074 (log->l_logBBstart != 0 &&
1075 !xfs_sb_version_haslogv2(&mp->m_sb))) {
1076 xlog_warn("XFS: log sector size (0x%x) invalid "
1077 "for configuration.", log->l_sectbb_log);
1078 goto out_free_log;
1079 }
1080 if (mp->m_sb.sb_logsectlog < BBSHIFT) {
1081 xlog_warn("XFS: Log sector log (0x%x) too small.",
1082 mp->m_sb.sb_logsectlog);
1083 goto out_free_log;
1084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 log->l_sectbb_mask = (1 << log->l_sectbb_log) - 1;
1087
1088 xlog_get_iclog_buffer_size(mp, log);
1089
Dave Chinnera6cb7672009-04-06 18:39:27 +02001090 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001092 if (!bp)
1093 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1096 ASSERT(XFS_BUF_ISBUSY(bp));
1097 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1098 log->l_xbuf = bp;
1099
Eric Sandeen007c61c2007-10-11 17:43:56 +10001100 spin_lock_init(&log->l_icloglock);
1101 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001102 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1105 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1106
1107 iclogp = &log->l_iclog;
1108 /*
1109 * The amount of memory to allocate for the iclog structure is
1110 * rather funky due to the way the structure is defined. It is
1111 * done this way so that we can use different sizes for machines
1112 * with different amounts of memory. See the definition of
1113 * xlog_in_core_t in xfs_log_priv.h for details.
1114 */
1115 iclogsize = log->l_iclog_size;
1116 ASSERT(log->l_iclog_size >= 4096);
1117 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001118 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1119 if (!*iclogp)
1120 goto out_free_iclog;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 iclog->ic_prev = prev_iclog;
1124 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001125
1126 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001127 if (!bp)
1128 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001129 if (!XFS_BUF_CPSEMA(bp))
1130 ASSERT(0);
1131 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001132 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1133 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001134 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001135#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001137#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 head = &iclog->ic_header;
1139 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001140 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1141 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001142 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001143 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001145 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1149 iclog->ic_state = XLOG_STATE_ACTIVE;
1150 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001151 atomic_set(&iclog->ic_refcnt, 0);
1152 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001154 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1157 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001158 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1159 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 iclogp = &iclog->ic_next;
1162 }
1163 *iclogp = log->l_iclog; /* complete ring */
1164 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1165
1166 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001167
1168out_free_iclog:
1169 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1170 prev_iclog = iclog->ic_next;
1171 if (iclog->ic_bp) {
1172 sv_destroy(&iclog->ic_force_wait);
1173 sv_destroy(&iclog->ic_write_wait);
1174 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001175 }
1176 kmem_free(iclog);
1177 }
1178 spinlock_destroy(&log->l_icloglock);
1179 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001180 xfs_buf_free(log->l_xbuf);
1181out_free_log:
1182 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001183out:
1184 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185} /* xlog_alloc_log */
1186
1187
1188/*
1189 * Write out the commit record of a transaction associated with the given
1190 * ticket. Return the lsn of the commit record.
1191 */
1192STATIC int
1193xlog_commit_record(xfs_mount_t *mp,
1194 xlog_ticket_t *ticket,
1195 xlog_in_core_t **iclog,
1196 xfs_lsn_t *commitlsnp)
1197{
1198 int error;
1199 xfs_log_iovec_t reg[1];
1200
1201 reg[0].i_addr = NULL;
1202 reg[0].i_len = 0;
Christoph Hellwig4139b3b2010-01-19 09:56:45 +00001203 reg[0].i_type = XLOG_REG_TYPE_COMMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 ASSERT_ALWAYS(iclog);
1206 if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp,
1207 iclog, XLOG_COMMIT_TRANS))) {
Nathan Scott7d04a332006-06-09 14:58:38 +10001208 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001210 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211} /* xlog_commit_record */
1212
1213
1214/*
1215 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1216 * log space. This code pushes on the lsn which would supposedly free up
1217 * the 25% which we want to leave free. We may need to adopt a policy which
1218 * pushes on an lsn which is further along in the log once we reach the high
1219 * water mark. In this manner, we would be creating a low water mark.
1220 */
David Chinnera8272ce2007-11-23 16:28:09 +11001221STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222xlog_grant_push_ail(xfs_mount_t *mp,
1223 int need_bytes)
1224{
1225 xlog_t *log = mp->m_log; /* pointer to the log */
1226 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1227 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1228 int free_blocks; /* free blocks left to write to */
1229 int free_bytes; /* free bytes left to write to */
1230 int threshold_block; /* block in lsn we'd like to be at */
1231 int threshold_cycle; /* lsn cycle we'd like to be at */
1232 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1235
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001236 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 free_bytes = xlog_space_left(log,
1238 log->l_grant_reserve_cycle,
1239 log->l_grant_reserve_bytes);
1240 tail_lsn = log->l_tail_lsn;
1241 free_blocks = BTOBBT(free_bytes);
1242
1243 /*
1244 * Set the threshold for the minimum number of free blocks in the
1245 * log to the maximum of what the caller needs, one quarter of the
1246 * log, and 256 blocks.
1247 */
1248 free_threshold = BTOBB(need_bytes);
1249 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1250 free_threshold = MAX(free_threshold, 256);
1251 if (free_blocks < free_threshold) {
1252 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1253 threshold_cycle = CYCLE_LSN(tail_lsn);
1254 if (threshold_block >= log->l_logBBsize) {
1255 threshold_block -= log->l_logBBsize;
1256 threshold_cycle += 1;
1257 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001258 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 /* Don't pass in an lsn greater than the lsn of the last
1261 * log record known to be on disk.
1262 */
1263 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1264 threshold_lsn = log->l_last_sync_lsn;
1265 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001266 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /*
1269 * Get the transaction layer to kick the dirty buffers out to
1270 * disk asynchronously. No point in trying to do this if
1271 * the filesystem is shutting down.
1272 */
1273 if (threshold_lsn &&
1274 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001275 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276} /* xlog_grant_push_ail */
1277
Christoph Hellwig873ff552010-01-13 22:17:57 +00001278/*
1279 * The bdstrat callback function for log bufs. This gives us a central
1280 * place to trap bufs in case we get hit by a log I/O error and need to
1281 * shutdown. Actually, in practice, even when we didn't get a log error,
1282 * we transition the iclogs to IOERROR state *after* flushing all existing
1283 * iclogs to disk. This is because we don't want anymore new transactions to be
1284 * started or completed afterwards.
1285 */
1286STATIC int
1287xlog_bdstrat(
1288 struct xfs_buf *bp)
1289{
1290 struct xlog_in_core *iclog;
1291
1292 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1293 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1294 XFS_BUF_ERROR(bp, EIO);
1295 XFS_BUF_STALE(bp);
1296 xfs_biodone(bp);
1297 /*
1298 * It would seem logical to return EIO here, but we rely on
1299 * the log state machine to propagate I/O errors instead of
1300 * doing it here.
1301 */
1302 return 0;
1303 }
1304
1305 bp->b_flags |= _XBF_RUN_QUEUES;
1306 xfs_buf_iorequest(bp);
1307 return 0;
1308}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310/*
1311 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1312 * fashion. Previously, we should have moved the current iclog
1313 * ptr in the log to point to the next available iclog. This allows further
1314 * write to continue while this code syncs out an iclog ready to go.
1315 * Before an in-core log can be written out, the data section must be scanned
1316 * to save away the 1st word of each BBSIZE block into the header. We replace
1317 * it with the current cycle count. Each BBSIZE block is tagged with the
1318 * cycle count because there in an implicit assumption that drives will
1319 * guarantee that entire 512 byte blocks get written at once. In other words,
1320 * we can't have part of a 512 byte block written and part not written. By
1321 * tagging each block, we will know which blocks are valid when recovering
1322 * after an unclean shutdown.
1323 *
1324 * This routine is single threaded on the iclog. No other thread can be in
1325 * this routine with the same iclog. Changing contents of iclog can there-
1326 * fore be done without grabbing the state machine lock. Updating the global
1327 * log will require grabbing the lock though.
1328 *
1329 * The entire log manager uses a logical block numbering scheme. Only
1330 * log_sync (and then only bwrite()) know about the fact that the log may
1331 * not start with block zero on a given device. The log block start offset
1332 * is added immediately before calling bwrite().
1333 */
1334
David Chinnera8272ce2007-11-23 16:28:09 +11001335STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336xlog_sync(xlog_t *log,
1337 xlog_in_core_t *iclog)
1338{
1339 xfs_caddr_t dptr; /* pointer to byte sized element */
1340 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001341 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 uint count; /* byte count of bwrite */
1343 uint count_init; /* initial count before roundup */
1344 int roundoff; /* roundoff to BB or stripe */
1345 int split = 0; /* split write into two regions */
1346 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001347 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001350 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 /* Add for LR header */
1353 count_init = log->l_iclog_hsize + iclog->ic_offset;
1354
1355 /* Round out the log write size */
1356 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1357 /* we have a v2 stripe unit to use */
1358 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1359 } else {
1360 count = BBTOB(BTOBB(count_init));
1361 }
1362 roundoff = count - count_init;
1363 ASSERT(roundoff >= 0);
1364 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1365 roundoff < log->l_mp->m_sb.sb_logsunit)
1366 ||
1367 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1368 roundoff < BBTOB(1)));
1369
1370 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001371 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001372 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001373 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /* put cycle number in every block */
1376 xlog_pack_data(log, iclog, roundoff);
1377
1378 /* real byte length */
1379 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001380 iclog->ic_header.h_len =
1381 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001383 iclog->ic_header.h_len =
1384 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386
Nathan Scottf5faad72006-07-28 17:04:44 +10001387 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1389 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001390 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1393
1394 /* Do we need to split this write into 2 parts? */
1395 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1396 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1397 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1398 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1399 } else {
1400 iclog->ic_bwritecnt = 1;
1401 }
David Chinner511105b2007-05-24 15:21:57 +10001402 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001404 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 XFS_BUF_BUSY(bp);
1406 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001407 bp->b_flags |= XBF_LOG_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /*
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001409 * Do an ordered write for the log block.
Nathan Scottf5faad72006-07-28 17:04:44 +10001410 * Its unnecessary to flush the first split block in the log wrap case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 */
Nathan Scottf5faad72006-07-28 17:04:44 +10001412 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001413 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1416 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1417
1418 xlog_verify_iclog(log, iclog, count, B_TRUE);
1419
1420 /* account for log which doesn't start at block #0 */
1421 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1422 /*
1423 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1424 * is shutting down.
1425 */
1426 XFS_BUF_WRITE(bp);
1427
Christoph Hellwig873ff552010-01-13 22:17:57 +00001428 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1430 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001431 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001434 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1436 (unsigned long)1);
1437 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1438 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1439 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1440 (__psint_t)count), split);
1441 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001442 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 XFS_BUF_BUSY(bp);
1444 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001445 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001446 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1447 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 dptr = XFS_BUF_PTR(bp);
1449 /*
1450 * Bump the cycle numbers at the start of each block
1451 * since this part of the buffer is at the start of
1452 * a new cycle. Watch out for the header magic number
1453 * case, though.
1454 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001455 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001456 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001457 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001458 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 dptr += BBSIZE;
1460 }
1461
1462 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1463 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1464
Nathan Scottc41564b2006-03-29 08:55:14 +10001465 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1467 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001468 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1470 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001471 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475} /* xlog_sync */
1476
1477
1478/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001479 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 */
David Chinnera8272ce2007-11-23 16:28:09 +11001481STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001482xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
1484 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 int i;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 iclog = log->l_iclog;
1488 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001489 sv_destroy(&iclog->ic_force_wait);
1490 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001493 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 iclog = next_iclog;
1495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 spinlock_destroy(&log->l_icloglock);
1497 spinlock_destroy(&log->l_grant_lock);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001501 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001502} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504/*
1505 * Update counters atomically now that memcpy is done.
1506 */
1507/* ARGSUSED */
1508static inline void
1509xlog_state_finish_copy(xlog_t *log,
1510 xlog_in_core_t *iclog,
1511 int record_cnt,
1512 int copy_bytes)
1513{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001514 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001516 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 iclog->ic_offset += copy_bytes;
1518
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001519 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520} /* xlog_state_finish_copy */
1521
1522
1523
1524
1525/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001526 * print out info relating to regions written which consume
1527 * the reservation
1528 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001529STATIC void
1530xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1531{
1532 uint i;
1533 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1534
1535 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1536 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1537 "bformat",
1538 "bchunk",
1539 "efi_format",
1540 "efd_format",
1541 "iformat",
1542 "icore",
1543 "iext",
1544 "ibroot",
1545 "ilocal",
1546 "iattr_ext",
1547 "iattr_broot",
1548 "iattr_local",
1549 "qformat",
1550 "dquot",
1551 "quotaoff",
1552 "LR header",
1553 "unmount",
1554 "commit",
1555 "trans header"
1556 };
1557 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1558 "SETATTR_NOT_SIZE",
1559 "SETATTR_SIZE",
1560 "INACTIVE",
1561 "CREATE",
1562 "CREATE_TRUNC",
1563 "TRUNCATE_FILE",
1564 "REMOVE",
1565 "LINK",
1566 "RENAME",
1567 "MKDIR",
1568 "RMDIR",
1569 "SYMLINK",
1570 "SET_DMATTRS",
1571 "GROWFS",
1572 "STRAT_WRITE",
1573 "DIOSTRAT",
1574 "WRITE_SYNC",
1575 "WRITEID",
1576 "ADDAFORK",
1577 "ATTRINVAL",
1578 "ATRUNCATE",
1579 "ATTR_SET",
1580 "ATTR_RM",
1581 "ATTR_FLAG",
1582 "CLEAR_AGI_BUCKET",
1583 "QM_SBCHANGE",
1584 "DUMMY1",
1585 "DUMMY2",
1586 "QM_QUOTAOFF",
1587 "QM_DQALLOC",
1588 "QM_SETQLIM",
1589 "QM_DQCLUSTER",
1590 "QM_QINOCREATE",
1591 "QM_QUOTAOFF_END",
1592 "SB_UNIT",
1593 "FSYNC_TS",
1594 "GROWFSRT_ALLOC",
1595 "GROWFSRT_ZERO",
1596 "GROWFSRT_FREE",
1597 "SWAPEXT"
1598 };
1599
1600 xfs_fs_cmn_err(CE_WARN, mp,
1601 "xfs_log_write: reservation summary:\n"
1602 " trans type = %s (%u)\n"
1603 " unit res = %d bytes\n"
1604 " current res = %d bytes\n"
1605 " total reg = %u bytes (o/flow = %u bytes)\n"
1606 " ophdrs = %u (ophdr space = %u bytes)\n"
1607 " ophdr + reg = %u bytes\n"
1608 " num regions = %u\n",
1609 ((ticket->t_trans_type <= 0 ||
1610 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1611 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1612 ticket->t_trans_type,
1613 ticket->t_unit_res,
1614 ticket->t_curr_res,
1615 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1616 ticket->t_res_num_ophdrs, ophdr_spc,
1617 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001618 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001619 ticket->t_res_num);
1620
1621 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001622 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001623 cmn_err(CE_WARN,
1624 "region[%u]: %s - %u bytes\n",
1625 i,
1626 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1627 "bad-rtype" : res_type_str[r_type-1]),
1628 ticket->t_res_arr[i].r_len);
1629 }
1630}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001631
1632/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001633 * Calculate the potential space needed by the log vector. Each region gets
1634 * its own xlog_op_header_t and may need to be double word aligned.
1635 */
1636static int
1637xlog_write_calc_vec_length(
1638 struct xlog_ticket *ticket,
1639 struct xfs_log_iovec reg[],
1640 int nentries)
1641{
1642 int headers = 0;
1643 int len = 0;
1644 int i;
1645
1646 /* acct for start rec of xact */
1647 if (ticket->t_flags & XLOG_TIC_INITED)
1648 headers++;
1649
1650 for (i = 0; i < nentries; i++) {
1651 /* each region gets >= 1 */
1652 headers++;
1653
1654 len += reg[i].i_len;
1655 xlog_tic_add_region(ticket, reg[i].i_len, reg[i].i_type);
1656 }
1657
1658 ticket->t_res_num_ophdrs += headers;
1659 len += headers * sizeof(struct xlog_op_header);
1660
1661 return len;
1662}
1663
1664/*
1665 * If first write for transaction, insert start record We can't be trying to
1666 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1667 */
1668static int
1669xlog_write_start_rec(
1670 __psint_t ptr,
1671 struct xlog_ticket *ticket)
1672{
1673 struct xlog_op_header *ophdr = (struct xlog_op_header *)ptr;
1674
1675 if (!(ticket->t_flags & XLOG_TIC_INITED))
1676 return 0;
1677
1678 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1679 ophdr->oh_clientid = ticket->t_clientid;
1680 ophdr->oh_len = 0;
1681 ophdr->oh_flags = XLOG_START_TRANS;
1682 ophdr->oh_res2 = 0;
1683
1684 ticket->t_flags &= ~XLOG_TIC_INITED;
1685
1686 return sizeof(struct xlog_op_header);
1687}
1688
1689static xlog_op_header_t *
1690xlog_write_setup_ophdr(
1691 struct log *log,
1692 __psint_t ptr,
1693 struct xlog_ticket *ticket,
1694 uint flags)
1695{
1696 struct xlog_op_header *ophdr = (struct xlog_op_header *)ptr;
1697
1698 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1699 ophdr->oh_clientid = ticket->t_clientid;
1700 ophdr->oh_res2 = 0;
1701
1702 /* are we copying a commit or unmount record? */
1703 ophdr->oh_flags = flags;
1704
1705 /*
1706 * We've seen logs corrupted with bad transaction client ids. This
1707 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1708 * and shut down the filesystem.
1709 */
1710 switch (ophdr->oh_clientid) {
1711 case XFS_TRANSACTION:
1712 case XFS_VOLUME:
1713 case XFS_LOG:
1714 break;
1715 default:
1716 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1717 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1718 ophdr->oh_clientid, ticket);
1719 return NULL;
1720 }
1721
1722 return ophdr;
1723}
1724
1725/*
1726 * Set up the parameters of the region copy into the log. This has
1727 * to handle region write split across multiple log buffers - this
1728 * state is kept external to this function so that this code can
1729 * can be written in an obvious, self documenting manner.
1730 */
1731static int
1732xlog_write_setup_copy(
1733 struct xlog_ticket *ticket,
1734 struct xlog_op_header *ophdr,
1735 int space_available,
1736 int space_required,
1737 int *copy_off,
1738 int *copy_len,
1739 int *last_was_partial_copy,
1740 int *bytes_consumed)
1741{
1742 int still_to_copy;
1743
1744 still_to_copy = space_required - *bytes_consumed;
1745 *copy_off = *bytes_consumed;
1746
1747 if (still_to_copy <= space_available) {
1748 /* write of region completes here */
1749 *copy_len = still_to_copy;
1750 ophdr->oh_len = cpu_to_be32(*copy_len);
1751 if (*last_was_partial_copy)
1752 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1753 *last_was_partial_copy = 0;
1754 *bytes_consumed = 0;
1755 return 0;
1756 }
1757
1758 /* partial write of region, needs extra log op header reservation */
1759 *copy_len = space_available;
1760 ophdr->oh_len = cpu_to_be32(*copy_len);
1761 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1762 if (*last_was_partial_copy)
1763 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1764 *bytes_consumed += *copy_len;
1765 (*last_was_partial_copy)++;
1766
1767 /* account for new log op header */
1768 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1769 ticket->t_res_num_ophdrs++;
1770
1771 return sizeof(struct xlog_op_header);
1772}
1773
1774static int
1775xlog_write_copy_finish(
1776 struct log *log,
1777 struct xlog_in_core *iclog,
1778 uint flags,
1779 int *record_cnt,
1780 int *data_cnt,
1781 int *partial_copy,
1782 int *partial_copy_len,
1783 int log_offset,
1784 struct xlog_in_core **commit_iclog)
1785{
1786 if (*partial_copy) {
1787 /*
1788 * This iclog has already been marked WANT_SYNC by
1789 * xlog_state_get_iclog_space.
1790 */
1791 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1792 *record_cnt = 0;
1793 *data_cnt = 0;
1794 return xlog_state_release_iclog(log, iclog);
1795 }
1796
1797 *partial_copy = 0;
1798 *partial_copy_len = 0;
1799
1800 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1801 /* no more space in this iclog - push it. */
1802 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1803 *record_cnt = 0;
1804 *data_cnt = 0;
1805
1806 spin_lock(&log->l_icloglock);
1807 xlog_state_want_sync(log, iclog);
1808 spin_unlock(&log->l_icloglock);
1809
1810 if (!commit_iclog)
1811 return xlog_state_release_iclog(log, iclog);
1812 ASSERT(flags & XLOG_COMMIT_TRANS);
1813 *commit_iclog = iclog;
1814 }
1815
1816 return 0;
1817}
1818
1819/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 * Write some region out to in-core log
1821 *
1822 * This will be called when writing externally provided regions or when
1823 * writing out a commit record for a given transaction.
1824 *
1825 * General algorithm:
1826 * 1. Find total length of this write. This may include adding to the
1827 * lengths passed in.
1828 * 2. Check whether we violate the tickets reservation.
1829 * 3. While writing to this iclog
1830 * A. Reserve as much space in this iclog as can get
1831 * B. If this is first write, save away start lsn
1832 * C. While writing this region:
1833 * 1. If first write of transaction, write start record
1834 * 2. Write log operation header (header per region)
1835 * 3. Find out if we can fit entire region into this iclog
1836 * 4. Potentially, verify destination memcpy ptr
1837 * 5. Memcpy (partial) region
1838 * 6. If partial copy, release iclog; otherwise, continue
1839 * copying more regions into current iclog
1840 * 4. Mark want sync bit (in simulation mode)
1841 * 5. Release iclog for potential flush to on-disk log.
1842 *
1843 * ERRORS:
1844 * 1. Panic if reservation is overrun. This should never happen since
1845 * reservation amounts are generated internal to the filesystem.
1846 * NOTES:
1847 * 1. Tickets are single threaded data structures.
1848 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1849 * syncing routine. When a single log_write region needs to span
1850 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1851 * on all log operation writes which don't contain the end of the
1852 * region. The XLOG_END_TRANS bit is used for the in-core log
1853 * operation which contains the end of the continued log_write region.
1854 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1855 * we don't really know exactly how much space will be used. As a result,
1856 * we don't update ic_offset until the end when we know exactly how many
1857 * bytes have been written out.
1858 */
David Chinnera8272ce2007-11-23 16:28:09 +11001859STATIC int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001860xlog_write(
1861 struct xfs_mount *mp,
1862 struct xfs_log_iovec reg[],
1863 int nentries,
1864 struct xlog_ticket *ticket,
1865 xfs_lsn_t *start_lsn,
1866 struct xlog_in_core **commit_iclog,
1867 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001869 struct log *log = mp->m_log;
1870 struct xlog_in_core *iclog = NULL;
1871 int len;
1872 int index;
1873 int partial_copy = 0;
1874 int partial_copy_len = 0;
1875 int contwr = 0;
1876 int record_cnt = 0;
1877 int data_cnt = 0;
1878 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001880 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001882 len = xlog_write_calc_vec_length(ticket, reg, nentries);
1883 if (ticket->t_curr_res < len) {
1884 xlog_print_tic_res(mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885#ifdef DEBUG
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001886 xlog_panic(
1887 "xfs_log_write: reservation ran out. Need to up reservation");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888#else
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001889 /* Customer configurable panic */
1890 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1891 "xfs_log_write: reservation ran out. Need to up reservation");
1892
1893 /* If we did not panic, shutdown the filesystem */
1894 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895#endif
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001896 }
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 ticket->t_curr_res -= len;
1899
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001900 for (index = 0; index < nentries; ) {
1901 __psint_t ptr;
1902 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001904 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1905 &contwr, &log_offset);
1906 if (error)
1907 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001909 ASSERT(log_offset <= iclog->ic_size - 1);
1910 ptr = (__psint_t)((char *)iclog->ic_datap + log_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001912 /* start_lsn is the first lsn written to. That's all we need. */
1913 if (!*start_lsn)
1914 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001916 /*
1917 * This loop writes out as many regions as can fit in the amount
1918 * of space which was allocated by xlog_state_get_iclog_space().
1919 */
1920 while (index < nentries) {
1921 struct xlog_op_header *ophdr;
1922 int start_rec_copy;
1923 int copy_len;
1924 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001926 ASSERT(reg[index].i_len % sizeof(__int32_t) == 0);
1927 ASSERT((__psint_t)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001929 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1930 if (start_rec_copy) {
1931 record_cnt++;
1932 xlog_write_adv_cnt(ptr, len, log_offset,
1933 start_rec_copy);
1934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001936 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1937 if (!ophdr)
1938 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001940 xlog_write_adv_cnt(ptr, len, log_offset,
1941 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001943 len += xlog_write_setup_copy(ticket, ophdr,
1944 iclog->ic_size-log_offset,
1945 reg[index].i_len,
1946 &copy_off, &copy_len,
1947 &partial_copy,
1948 &partial_copy_len);
1949 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001950
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001951 /* copy region */
1952 ASSERT(copy_len >= 0);
1953 memcpy((xfs_caddr_t)ptr, reg[index].i_addr + copy_off,
1954 copy_len);
1955 xlog_write_adv_cnt(ptr, len, log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001956
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001957 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1958 record_cnt++;
1959 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001961 error = xlog_write_copy_finish(log, iclog, flags,
1962 &record_cnt, &data_cnt,
1963 &partial_copy,
1964 &partial_copy_len,
1965 log_offset,
1966 commit_iclog);
1967 if (error)
1968 return error;
1969
1970 /*
1971 * if we had a partial copy, we need to get more iclog
1972 * space but we don't want to increment the region
1973 * index because there is still more is this region to
1974 * write.
1975 *
1976 * If we completed writing this region, and we flushed
1977 * the iclog (indicated by resetting of the record
1978 * count), then we also need to get more log space. If
1979 * this was the last record, though, we are done and
1980 * can just return.
1981 */
1982 if (partial_copy)
1983 break;
1984
1985 index++;
1986 if (record_cnt == 0) {
1987 if (index == nentries)
1988 return 0;
1989 break;
1990 }
1991 }
1992 }
1993
1994 ASSERT(len == 0);
1995
1996 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1997 if (!commit_iclog)
1998 return xlog_state_release_iclog(log, iclog);
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 ASSERT(flags & XLOG_COMMIT_TRANS);
2001 *commit_iclog = iclog;
2002 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002003}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005
2006/*****************************************************************************
2007 *
2008 * State Machine functions
2009 *
2010 *****************************************************************************
2011 */
2012
2013/* Clean iclogs starting from the head. This ordering must be
2014 * maintained, so an iclog doesn't become ACTIVE beyond one that
2015 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002016 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 * iclog is trying to sync to disk.
2018 *
2019 * State Change: DIRTY -> ACTIVE
2020 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002021STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022xlog_state_clean_log(xlog_t *log)
2023{
2024 xlog_in_core_t *iclog;
2025 int changed = 0;
2026
2027 iclog = log->l_iclog;
2028 do {
2029 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2030 iclog->ic_state = XLOG_STATE_ACTIVE;
2031 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002032 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 /*
2034 * If the number of ops in this iclog indicate it just
2035 * contains the dummy transaction, we can
2036 * change state into IDLE (the second time around).
2037 * Otherwise we should change the state into
2038 * NEED a dummy.
2039 * We don't need to cover the dummy.
2040 */
2041 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002042 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2043 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 changed = 1;
2045 } else {
2046 /*
2047 * We have two dirty iclogs so start over
2048 * This could also be num of ops indicates
2049 * this is not the dummy going out.
2050 */
2051 changed = 2;
2052 }
2053 iclog->ic_header.h_num_logops = 0;
2054 memset(iclog->ic_header.h_cycle_data, 0,
2055 sizeof(iclog->ic_header.h_cycle_data));
2056 iclog->ic_header.h_lsn = 0;
2057 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2058 /* do nothing */;
2059 else
2060 break; /* stop cleaning */
2061 iclog = iclog->ic_next;
2062 } while (iclog != log->l_iclog);
2063
2064 /* log is locked when we are called */
2065 /*
2066 * Change state for the dummy log recording.
2067 * We usually go to NEED. But we go to NEED2 if the changed indicates
2068 * we are done writing the dummy record.
2069 * If we are done with the second dummy recored (DONE2), then
2070 * we go to IDLE.
2071 */
2072 if (changed) {
2073 switch (log->l_covered_state) {
2074 case XLOG_STATE_COVER_IDLE:
2075 case XLOG_STATE_COVER_NEED:
2076 case XLOG_STATE_COVER_NEED2:
2077 log->l_covered_state = XLOG_STATE_COVER_NEED;
2078 break;
2079
2080 case XLOG_STATE_COVER_DONE:
2081 if (changed == 1)
2082 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2083 else
2084 log->l_covered_state = XLOG_STATE_COVER_NEED;
2085 break;
2086
2087 case XLOG_STATE_COVER_DONE2:
2088 if (changed == 1)
2089 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2090 else
2091 log->l_covered_state = XLOG_STATE_COVER_NEED;
2092 break;
2093
2094 default:
2095 ASSERT(0);
2096 }
2097 }
2098} /* xlog_state_clean_log */
2099
2100STATIC xfs_lsn_t
2101xlog_get_lowest_lsn(
2102 xlog_t *log)
2103{
2104 xlog_in_core_t *lsn_log;
2105 xfs_lsn_t lowest_lsn, lsn;
2106
2107 lsn_log = log->l_iclog;
2108 lowest_lsn = 0;
2109 do {
2110 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002111 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if ((lsn && !lowest_lsn) ||
2113 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2114 lowest_lsn = lsn;
2115 }
2116 }
2117 lsn_log = lsn_log->ic_next;
2118 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002119 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122
2123STATIC void
2124xlog_state_do_callback(
2125 xlog_t *log,
2126 int aborted,
2127 xlog_in_core_t *ciclog)
2128{
2129 xlog_in_core_t *iclog;
2130 xlog_in_core_t *first_iclog; /* used to know when we've
2131 * processed all iclogs once */
2132 xfs_log_callback_t *cb, *cb_next;
2133 int flushcnt = 0;
2134 xfs_lsn_t lowest_lsn;
2135 int ioerrors; /* counter: iclogs with errors */
2136 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2137 int funcdidcallbacks; /* flag: function did callbacks */
2138 int repeats; /* for issuing console warnings if
2139 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002140 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002142 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 first_iclog = iclog = log->l_iclog;
2144 ioerrors = 0;
2145 funcdidcallbacks = 0;
2146 repeats = 0;
2147
2148 do {
2149 /*
2150 * Scan all iclogs starting with the one pointed to by the
2151 * log. Reset this starting point each time the log is
2152 * unlocked (during callbacks).
2153 *
2154 * Keep looping through iclogs until one full pass is made
2155 * without running any callbacks.
2156 */
2157 first_iclog = log->l_iclog;
2158 iclog = log->l_iclog;
2159 loopdidcallbacks = 0;
2160 repeats++;
2161
2162 do {
2163
2164 /* skip all iclogs in the ACTIVE & DIRTY states */
2165 if (iclog->ic_state &
2166 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2167 iclog = iclog->ic_next;
2168 continue;
2169 }
2170
2171 /*
2172 * Between marking a filesystem SHUTDOWN and stopping
2173 * the log, we do flush all iclogs to disk (if there
2174 * wasn't a log I/O error). So, we do want things to
2175 * go smoothly in case of just a SHUTDOWN w/o a
2176 * LOG_IO_ERROR.
2177 */
2178 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2179 /*
2180 * Can only perform callbacks in order. Since
2181 * this iclog is not in the DONE_SYNC/
2182 * DO_CALLBACK state, we skip the rest and
2183 * just try to clean up. If we set our iclog
2184 * to DO_CALLBACK, we will not process it when
2185 * we retry since a previous iclog is in the
2186 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002187 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 */
2189 if (!(iclog->ic_state &
2190 (XLOG_STATE_DONE_SYNC |
2191 XLOG_STATE_DO_CALLBACK))) {
2192 if (ciclog && (ciclog->ic_state ==
2193 XLOG_STATE_DONE_SYNC)) {
2194 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2195 }
2196 break;
2197 }
2198 /*
2199 * We now have an iclog that is in either the
2200 * DO_CALLBACK or DONE_SYNC states. The other
2201 * states (WANT_SYNC, SYNCING, or CALLBACK were
2202 * caught by the above if and are going to
2203 * clean (i.e. we aren't doing their callbacks)
2204 * see the above if.
2205 */
2206
2207 /*
2208 * We will do one more check here to see if we
2209 * have chased our tail around.
2210 */
2211
2212 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002213 if (lowest_lsn &&
2214 XFS_LSN_CMP(lowest_lsn,
2215 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 iclog = iclog->ic_next;
2217 continue; /* Leave this iclog for
2218 * another thread */
2219 }
2220
2221 iclog->ic_state = XLOG_STATE_CALLBACK;
2222
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002223 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002226 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * No one else can be here except us.
2228 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002229 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002230 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2231 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2232 log->l_last_sync_lsn =
2233 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002234 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002237 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 ioerrors++;
2239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
David Chinner114d23a2008-04-10 12:18:39 +10002241 /*
2242 * Keep processing entries in the callback list until
2243 * we come around and it is empty. We need to
2244 * atomically see that the list is empty and change the
2245 * state to DIRTY so that we don't miss any more
2246 * callbacks being added.
2247 */
2248 spin_lock(&iclog->ic_callback_lock);
2249 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002250 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 iclog->ic_callback_tail = &(iclog->ic_callback);
2252 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002253 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002256 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 cb_next = cb->cb_next;
2258 cb->cb_func(cb->cb_arg, aborted);
2259 }
David Chinner114d23a2008-04-10 12:18:39 +10002260 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 cb = iclog->ic_callback;
2262 }
2263
2264 loopdidcallbacks++;
2265 funcdidcallbacks++;
2266
David Chinner114d23a2008-04-10 12:18:39 +10002267 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002268 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002269 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2271 iclog->ic_state = XLOG_STATE_DIRTY;
2272
2273 /*
2274 * Transition from DIRTY to ACTIVE if applicable.
2275 * NOP if STATE_IOERROR.
2276 */
2277 xlog_state_clean_log(log);
2278
2279 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002280 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 iclog = iclog->ic_next;
2283 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002284
2285 if (repeats > 5000) {
2286 flushcnt += repeats;
2287 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002289 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002290 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
2292 } while (!ioerrors && loopdidcallbacks);
2293
2294 /*
2295 * make one last gasp attempt to see if iclogs are being left in
2296 * limbo..
2297 */
2298#ifdef DEBUG
2299 if (funcdidcallbacks) {
2300 first_iclog = iclog = log->l_iclog;
2301 do {
2302 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2303 /*
2304 * Terminate the loop if iclogs are found in states
2305 * which will cause other threads to clean up iclogs.
2306 *
2307 * SYNCING - i/o completion will go through logs
2308 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002309 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 * IOERROR - give up hope all ye who enter here
2311 */
2312 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2313 iclog->ic_state == XLOG_STATE_SYNCING ||
2314 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2315 iclog->ic_state == XLOG_STATE_IOERROR )
2316 break;
2317 iclog = iclog->ic_next;
2318 } while (first_iclog != iclog);
2319 }
2320#endif
2321
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002322 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2323 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002324 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002325
2326 if (wake)
2327 sv_broadcast(&log->l_flush_wait);
2328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330
2331/*
2332 * Finish transitioning this iclog to the dirty state.
2333 *
2334 * Make sure that we completely execute this routine only when this is
2335 * the last call to the iclog. There is a good chance that iclog flushes,
2336 * when we reach the end of the physical log, get turned into 2 separate
2337 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2338 * routine. By using the reference count bwritecnt, we guarantee that only
2339 * the second completion goes through.
2340 *
2341 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002342 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 */
David Chinnera8272ce2007-11-23 16:28:09 +11002344STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345xlog_state_done_syncing(
2346 xlog_in_core_t *iclog,
2347 int aborted)
2348{
2349 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002351 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2354 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002355 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2357
2358
2359 /*
2360 * If we got an error, either on the first buffer, or in the case of
2361 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2362 * and none should ever be attempted to be written to disk
2363 * again.
2364 */
2365 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2366 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002367 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 return;
2369 }
2370 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2371 }
2372
2373 /*
2374 * Someone could be sleeping prior to writing out the next
2375 * iclog buffer, we wake them all, one will get to do the
2376 * I/O, the others get to wait for the result.
2377 */
David Chinner12017fa2008-08-13 16:34:31 +10002378 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002379 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2381} /* xlog_state_done_syncing */
2382
2383
2384/*
2385 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002386 * sleep. We wait on the flush queue on the head iclog as that should be
2387 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2388 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 *
2390 * The in-core logs are used in a circular fashion. They are not used
2391 * out-of-order even when an iclog past the head is free.
2392 *
2393 * return:
2394 * * log_offset where xlog_write() can start writing into the in-core
2395 * log's data space.
2396 * * in-core log pointer to which xlog_write() should write.
2397 * * boolean indicating this is a continued write to an in-core log.
2398 * If this is the last write, then the in-core log's offset field
2399 * needs to be incremented, depending on the amount of data which
2400 * is copied.
2401 */
David Chinnera8272ce2007-11-23 16:28:09 +11002402STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403xlog_state_get_iclog_space(xlog_t *log,
2404 int len,
2405 xlog_in_core_t **iclogp,
2406 xlog_ticket_t *ticket,
2407 int *continued_write,
2408 int *logoffsetp)
2409{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 int log_offset;
2411 xlog_rec_header_t *head;
2412 xlog_in_core_t *iclog;
2413 int error;
2414
2415restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002416 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002418 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 return XFS_ERROR(EIO);
2420 }
2421
2422 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002423 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002425
2426 /* Wait for log writes to have flushed */
2427 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 goto restart;
2429 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 head = &iclog->ic_header;
2432
David Chinner155cc6b2008-03-06 13:44:14 +11002433 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 log_offset = iclog->ic_offset;
2435
2436 /* On the 1st write to an iclog, figure out lsn. This works
2437 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2438 * committing to. If the offset is set, that's how many blocks
2439 * must be written.
2440 */
2441 if (log_offset == 0) {
2442 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002443 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002444 log->l_iclog_hsize,
2445 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002446 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2447 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002448 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 ASSERT(log->l_curr_block >= 0);
2450 }
2451
2452 /* If there is enough room to write everything, then do it. Otherwise,
2453 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2454 * bit is on, so this will get flushed out. Don't update ic_offset
2455 * until you know exactly how many bytes get copied. Therefore, wait
2456 * until later to update ic_offset.
2457 *
2458 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2459 * can fit into remaining data section.
2460 */
2461 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2462 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2463
Dave Chinner49641f12008-07-11 17:43:55 +10002464 /*
2465 * If I'm the only one writing to this iclog, sync it to disk.
2466 * We need to do an atomic compare and decrement here to avoid
2467 * racing with concurrent atomic_dec_and_lock() calls in
2468 * xlog_state_release_iclog() when there is more than one
2469 * reference to the iclog.
2470 */
2471 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2472 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002473 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002474 error = xlog_state_release_iclog(log, iclog);
2475 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002476 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002478 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
2480 goto restart;
2481 }
2482
2483 /* Do we have enough room to write the full amount in the remainder
2484 * of this iclog? Or must we continue a write on the next iclog and
2485 * mark this iclog as completely taken? In the case where we switch
2486 * iclogs (to mark it taken), this particular iclog will release/sync
2487 * to disk in xlog_write().
2488 */
2489 if (len <= iclog->ic_size - iclog->ic_offset) {
2490 *continued_write = 0;
2491 iclog->ic_offset += len;
2492 } else {
2493 *continued_write = 1;
2494 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2495 }
2496 *iclogp = iclog;
2497
2498 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002499 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 *logoffsetp = log_offset;
2502 return 0;
2503} /* xlog_state_get_iclog_space */
2504
2505/*
2506 * Atomically get the log space required for a log ticket.
2507 *
2508 * Once a ticket gets put onto the reserveq, it will only return after
2509 * the needed reservation is satisfied.
2510 */
2511STATIC int
2512xlog_grant_log_space(xlog_t *log,
2513 xlog_ticket_t *tic)
2514{
2515 int free_bytes;
2516 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517#ifdef DEBUG
2518 xfs_lsn_t tail_lsn;
2519#endif
2520
2521
2522#ifdef DEBUG
2523 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2524 panic("grant Recovery problem");
2525#endif
2526
2527 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002528 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002529
2530 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 /* something is already sleeping; insert new transaction at end */
2533 if (log->l_reserve_headq) {
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002534 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002535
2536 trace_xfs_log_grant_sleep1(log, tic);
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 /*
2539 * Gotta check this before going to sleep, while we're
2540 * holding the grant lock.
2541 */
2542 if (XLOG_FORCED_SHUTDOWN(log))
2543 goto error_return;
2544
2545 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002546 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 /*
2548 * If we got an error, and the filesystem is shutting down,
2549 * we'll catch it down below. So just continue...
2550 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002551 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002552 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
2554 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2555 need_bytes = tic->t_unit_res*tic->t_ocnt;
2556 else
2557 need_bytes = tic->t_unit_res;
2558
2559redo:
2560 if (XLOG_FORCED_SHUTDOWN(log))
2561 goto error_return;
2562
2563 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2564 log->l_grant_reserve_bytes);
2565 if (free_bytes < need_bytes) {
2566 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002567 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002568
2569 trace_xfs_log_grant_sleep2(log, tic);
2570
Dave Chinner9d7fef72009-04-06 18:42:59 +02002571 spin_unlock(&log->l_grant_lock);
2572 xlog_grant_push_ail(log->l_mp, need_bytes);
2573 spin_lock(&log->l_grant_lock);
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002576 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Dave Chinner9d7fef72009-04-06 18:42:59 +02002578 spin_lock(&log->l_grant_lock);
2579 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002582 trace_xfs_log_grant_wake2(log, tic);
2583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 goto redo;
2585 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002586 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002589 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590#ifdef DEBUG
2591 tail_lsn = log->l_tail_lsn;
2592 /*
2593 * Check to make sure the grant write head didn't just over lap the
2594 * tail. If the cycles are the same, we can't be overlapping.
2595 * Otherwise, make sure that the cycles differ by exactly one and
2596 * check the byte count.
2597 */
2598 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2599 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2600 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2601 }
2602#endif
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002603 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002605 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return 0;
2607
2608 error_return:
2609 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002610 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002611
2612 trace_xfs_log_grant_error(log, tic);
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 /*
2615 * If we are failing, make sure the ticket doesn't have any
2616 * current reservations. We don't want to add this back when
2617 * the ticket/transaction gets cancelled.
2618 */
2619 tic->t_curr_res = 0;
2620 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002621 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 return XFS_ERROR(EIO);
2623} /* xlog_grant_log_space */
2624
2625
2626/*
2627 * Replenish the byte reservation required by moving the grant write head.
2628 *
2629 *
2630 */
2631STATIC int
2632xlog_regrant_write_log_space(xlog_t *log,
2633 xlog_ticket_t *tic)
2634{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 int free_bytes, need_bytes;
2636 xlog_ticket_t *ntic;
2637#ifdef DEBUG
2638 xfs_lsn_t tail_lsn;
2639#endif
2640
2641 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002642 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647#ifdef DEBUG
2648 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2649 panic("regrant Recovery problem");
2650#endif
2651
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002652 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002653
2654 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 if (XLOG_FORCED_SHUTDOWN(log))
2657 goto error_return;
2658
2659 /* If there are other waiters on the queue then give them a
2660 * chance at logspace before us. Wake up the first waiters,
2661 * if we do not wake up all the waiters then go to sleep waiting
2662 * for more free space, otherwise try to get some space for
2663 * this transaction.
2664 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002665 need_bytes = tic->t_unit_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if ((ntic = log->l_write_headq)) {
2667 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2668 log->l_grant_write_bytes);
2669 do {
2670 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2671
2672 if (free_bytes < ntic->t_unit_res)
2673 break;
2674 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002675 sv_signal(&ntic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 ntic = ntic->t_next;
2677 } while (ntic != log->l_write_headq);
2678
2679 if (ntic != log->l_write_headq) {
2680 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002681 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002683 trace_xfs_log_regrant_write_sleep1(log, tic);
2684
Dave Chinner9d7fef72009-04-06 18:42:59 +02002685 spin_unlock(&log->l_grant_lock);
2686 xlog_grant_push_ail(log->l_mp, need_bytes);
2687 spin_lock(&log->l_grant_lock);
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002690 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 &log->l_grant_lock, s);
2692
2693 /* If we're shutting down, this tic is already
2694 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002695 spin_lock(&log->l_grant_lock);
2696 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002699 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701 }
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703redo:
2704 if (XLOG_FORCED_SHUTDOWN(log))
2705 goto error_return;
2706
2707 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2708 log->l_grant_write_bytes);
2709 if (free_bytes < need_bytes) {
2710 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002711 xlog_ins_ticketq(&log->l_write_headq, tic);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002712 spin_unlock(&log->l_grant_lock);
2713 xlog_grant_push_ail(log->l_mp, need_bytes);
2714 spin_lock(&log->l_grant_lock);
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002717 trace_xfs_log_regrant_write_sleep2(log, tic);
2718
David Chinner12017fa2008-08-13 16:34:31 +10002719 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
2721 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002722 spin_lock(&log->l_grant_lock);
2723 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002726 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 goto redo;
2728 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002729 xlog_del_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002731 /* we've got enough space */
2732 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733#ifdef DEBUG
2734 tail_lsn = log->l_tail_lsn;
2735 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2736 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2737 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2738 }
2739#endif
2740
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002741 trace_xfs_log_regrant_write_exit(log, tic);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002744 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747
2748 error_return:
2749 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002750 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002751
2752 trace_xfs_log_regrant_write_error(log, tic);
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /*
2755 * If we are failing, make sure the ticket doesn't have any
2756 * current reservations. We don't want to add this back when
2757 * the ticket/transaction gets cancelled.
2758 */
2759 tic->t_curr_res = 0;
2760 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002761 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return XFS_ERROR(EIO);
2763} /* xlog_regrant_write_log_space */
2764
2765
2766/* The first cnt-1 times through here we don't need to
2767 * move the grant write head because the permanent
2768 * reservation has reserved cnt times the unit amount.
2769 * Release part of current permanent unit reservation and
2770 * reset current reservation to be one units worth. Also
2771 * move grant reservation head forward.
2772 */
2773STATIC void
2774xlog_regrant_reserve_log_space(xlog_t *log,
2775 xlog_ticket_t *ticket)
2776{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002777 trace_xfs_log_regrant_reserve_enter(log, ticket);
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (ticket->t_cnt > 0)
2780 ticket->t_cnt--;
2781
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002782 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002783 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002785 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002786
2787 trace_xfs_log_regrant_reserve_sub(log, ticket);
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 xlog_verify_grant_head(log, 1);
2790
2791 /* just return if we still have some of the pre-reserved space */
2792 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002793 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return;
2795 }
2796
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002797 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002798
2799 trace_xfs_log_regrant_reserve_exit(log, ticket);
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002802 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002804 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805} /* xlog_regrant_reserve_log_space */
2806
2807
2808/*
2809 * Give back the space left from a reservation.
2810 *
2811 * All the information we need to make a correct determination of space left
2812 * is present. For non-permanent reservations, things are quite easy. The
2813 * count should have been decremented to zero. We only need to deal with the
2814 * space remaining in the current reservation part of the ticket. If the
2815 * ticket contains a permanent reservation, there may be left over space which
2816 * needs to be released. A count of N means that N-1 refills of the current
2817 * reservation can be done before we need to ask for more space. The first
2818 * one goes to fill up the first current reservation. Once we run out of
2819 * space, the count will stay at zero and the only space remaining will be
2820 * in the current reservation field.
2821 */
2822STATIC void
2823xlog_ungrant_log_space(xlog_t *log,
2824 xlog_ticket_t *ticket)
2825{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (ticket->t_cnt > 0)
2827 ticket->t_cnt--;
2828
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002829 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002830 trace_xfs_log_ungrant_enter(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002832 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002834 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 /* If this is a permanent reservation ticket, we may be able to free
2837 * up more space based on the remaining count.
2838 */
2839 if (ticket->t_cnt > 0) {
2840 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002841 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
2843
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002844 trace_xfs_log_ungrant_exit(log, ticket);
2845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002847 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 xfs_log_move_tail(log->l_mp, 1);
2849} /* xlog_ungrant_log_space */
2850
2851
2852/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 * Flush iclog to disk if this is the last reference to the given iclog and
2854 * the WANT_SYNC bit is set.
2855 *
2856 * When this function is entered, the iclog is not necessarily in the
2857 * WANT_SYNC state. It may be sitting around waiting to get filled.
2858 *
2859 *
2860 */
David Chinnera8272ce2007-11-23 16:28:09 +11002861STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002862xlog_state_release_iclog(
2863 xlog_t *log,
2864 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 int sync = 0; /* do we sync? */
2867
David Chinner155cc6b2008-03-06 13:44:14 +11002868 if (iclog->ic_state & XLOG_STATE_IOERROR)
2869 return XFS_ERROR(EIO);
2870
2871 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2872 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2873 return 0;
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002876 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return XFS_ERROR(EIO);
2878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2880 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2881
David Chinner155cc6b2008-03-06 13:44:14 +11002882 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002883 /* update tail before writing to iclog */
2884 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 sync++;
2886 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002887 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2889 /* cycle incremented when incrementing curr_block */
2890 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002891 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 /*
2894 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002895 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2897 * this iclog has consistent data, so we ignore IOERROR
2898 * flags after this point.
2899 */
David Chinnerb5893342008-03-06 13:44:06 +11002900 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903} /* xlog_state_release_iclog */
2904
2905
2906/*
2907 * This routine will mark the current iclog in the ring as WANT_SYNC
2908 * and move the current iclog pointer to the next iclog in the ring.
2909 * When this routine is called from xlog_state_get_iclog_space(), the
2910 * exact size of the iclog has not yet been determined. All we know is
2911 * that every data block. We have run out of space in this log record.
2912 */
2913STATIC void
2914xlog_state_switch_iclogs(xlog_t *log,
2915 xlog_in_core_t *iclog,
2916 int eventual_size)
2917{
2918 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2919 if (!eventual_size)
2920 eventual_size = iclog->ic_offset;
2921 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002922 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 log->l_prev_block = log->l_curr_block;
2924 log->l_prev_cycle = log->l_curr_cycle;
2925
2926 /* roll log?: ic_offset changed later */
2927 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2928
2929 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002930 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 log->l_mp->m_sb.sb_logsunit > 1) {
2932 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2933 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2934 }
2935
2936 if (log->l_curr_block >= log->l_logBBsize) {
2937 log->l_curr_cycle++;
2938 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2939 log->l_curr_cycle++;
2940 log->l_curr_block -= log->l_logBBsize;
2941 ASSERT(log->l_curr_block >= 0);
2942 }
2943 ASSERT(iclog == log->l_iclog);
2944 log->l_iclog = iclog->ic_next;
2945} /* xlog_state_switch_iclogs */
2946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947/*
2948 * Write out all data in the in-core log as of this exact moment in time.
2949 *
2950 * Data may be written to the in-core log during this call. However,
2951 * we don't guarantee this data will be written out. A change from past
2952 * implementation means this routine will *not* write out zero length LRs.
2953 *
2954 * Basically, we try and perform an intelligent scan of the in-core logs.
2955 * If we determine there is no flushable data, we just return. There is no
2956 * flushable data if:
2957 *
2958 * 1. the current iclog is active and has no data; the previous iclog
2959 * is in the active or dirty state.
2960 * 2. the current iclog is drity, and the previous iclog is in the
2961 * active or dirty state.
2962 *
David Chinner12017fa2008-08-13 16:34:31 +10002963 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 *
2965 * 1. the current iclog is not in the active nor dirty state.
2966 * 2. the current iclog dirty, and the previous iclog is not in the
2967 * active nor dirty state.
2968 * 3. the current iclog is active, and there is another thread writing
2969 * to this particular iclog.
2970 * 4. a) the current iclog is active and has no other writers
2971 * b) when we return from flushing out this iclog, it is still
2972 * not in the active nor dirty state.
2973 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002974int
2975_xfs_log_force(
2976 struct xfs_mount *mp,
2977 uint flags,
2978 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002980 struct log *log = mp->m_log;
2981 struct xlog_in_core *iclog;
2982 xfs_lsn_t lsn;
2983
2984 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002986 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 iclog = log->l_iclog;
2989 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002990 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 return XFS_ERROR(EIO);
2992 }
2993
2994 /* If the head iclog is not active nor dirty, we just attach
2995 * ourselves to the head and go to sleep.
2996 */
2997 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2998 iclog->ic_state == XLOG_STATE_DIRTY) {
2999 /*
3000 * If the head is dirty or (active and empty), then
3001 * we need to look at the previous iclog. If the previous
3002 * iclog is active or dirty we are done. There is nothing
3003 * to sync out. Otherwise, we attach ourselves to the
3004 * previous iclog and go to sleep.
3005 */
3006 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11003007 (atomic_read(&iclog->ic_refcnt) == 0
3008 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 iclog = iclog->ic_prev;
3010 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3011 iclog->ic_state == XLOG_STATE_DIRTY)
3012 goto no_sleep;
3013 else
3014 goto maybe_sleep;
3015 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003016 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 /* We are the only one with access to this
3018 * iclog. Flush it out now. There should
3019 * be a roundoff of zero to show that someone
3020 * has already taken care of the roundoff from
3021 * the previous sync.
3022 */
David Chinner155cc6b2008-03-06 13:44:14 +11003023 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003024 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003026 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028 if (xlog_state_release_iclog(log, iclog))
3029 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003030
3031 if (log_flushed)
3032 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003033 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003034 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 iclog->ic_state != XLOG_STATE_DIRTY)
3036 goto maybe_sleep;
3037 else
3038 goto no_sleep;
3039 } else {
3040 /* Someone else is writing to this iclog.
3041 * Use its call to flush out the data. However,
3042 * the other thread may not force out this LR,
3043 * so we mark it WANT_SYNC.
3044 */
3045 xlog_state_switch_iclogs(log, iclog, 0);
3046 goto maybe_sleep;
3047 }
3048 }
3049 }
3050
3051 /* By the time we come around again, the iclog could've been filled
3052 * which would give it another lsn. If we have a new lsn, just
3053 * return because the relevant data has been flushed.
3054 */
3055maybe_sleep:
3056 if (flags & XFS_LOG_SYNC) {
3057 /*
3058 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003059 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * Then we check again after waking up, in case our
3061 * sleep was disturbed by a bad news.
3062 */
3063 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003064 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 return XFS_ERROR(EIO);
3066 }
3067 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003068 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 /*
3070 * No need to grab the log lock here since we're
3071 * only deciding whether or not to return EIO
3072 * and the memory read should be atomic.
3073 */
3074 if (iclog->ic_state & XLOG_STATE_IOERROR)
3075 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003076 if (log_flushed)
3077 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 } else {
3079
3080no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003081 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003084}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
3086/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003087 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3088 * about errors or whether the log was flushed or not. This is the normal
3089 * interface to use when trying to unpin items or move the log forward.
3090 */
3091void
3092xfs_log_force(
3093 xfs_mount_t *mp,
3094 uint flags)
3095{
3096 int error;
3097
3098 error = _xfs_log_force(mp, flags, NULL);
3099 if (error) {
3100 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3101 "error %d returned.", error);
3102 }
3103}
3104
3105/*
3106 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 *
3108 * Find in-core log with lsn.
3109 * If it is in the DIRTY state, just return.
3110 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3111 * state and go to sleep or return.
3112 * If it is in any other state, go to sleep or return.
3113 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003114 * Synchronous forces are implemented with a signal variable. All callers
3115 * to force a given lsn to disk will wait on a the sv attached to the
3116 * specific in-core log. When given in-core log finally completes its
3117 * write to disk, that thread will wake up all threads waiting on the
3118 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003120int
3121_xfs_log_force_lsn(
3122 struct xfs_mount *mp,
3123 xfs_lsn_t lsn,
3124 uint flags,
3125 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003127 struct log *log = mp->m_log;
3128 struct xlog_in_core *iclog;
3129 int already_slept = 0;
3130
3131 ASSERT(lsn != 0);
3132
3133 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003136 spin_lock(&log->l_icloglock);
3137 iclog = log->l_iclog;
3138 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003139 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003140 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 }
3142
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003143 do {
3144 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3145 iclog = iclog->ic_next;
3146 continue;
3147 }
3148
3149 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3150 spin_unlock(&log->l_icloglock);
3151 return 0;
3152 }
3153
3154 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3155 /*
3156 * We sleep here if we haven't already slept (e.g.
3157 * this is the first time we've looked at the correct
3158 * iclog buf) and the buffer before us is going to
3159 * be sync'ed. The reason for this is that if we
3160 * are doing sync transactions here, by waiting for
3161 * the previous I/O to complete, we can allow a few
3162 * more transactions into this iclog before we close
3163 * it down.
3164 *
3165 * Otherwise, we mark the buffer WANT_SYNC, and bump
3166 * up the refcnt so we can release the log (which
3167 * drops the ref count). The state switch keeps new
3168 * transaction commits from using this buffer. When
3169 * the current commits finish writing into the buffer,
3170 * the refcount will drop to zero and the buffer will
3171 * go out then.
3172 */
3173 if (!already_slept &&
3174 (iclog->ic_prev->ic_state &
3175 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3176 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3177
3178 XFS_STATS_INC(xs_log_force_sleep);
3179
3180 sv_wait(&iclog->ic_prev->ic_write_wait,
3181 PSWP, &log->l_icloglock, s);
3182 if (log_flushed)
3183 *log_flushed = 1;
3184 already_slept = 1;
3185 goto try_again;
3186 }
David Chinner155cc6b2008-03-06 13:44:14 +11003187 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003189 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 if (xlog_state_release_iclog(log, iclog))
3191 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003192 if (log_flushed)
3193 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003194 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003197 if ((flags & XFS_LOG_SYNC) && /* sleep */
3198 !(iclog->ic_state &
3199 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3200 /*
3201 * Don't wait on completion if we know that we've
3202 * gotten a log write error.
3203 */
3204 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3205 spin_unlock(&log->l_icloglock);
3206 return XFS_ERROR(EIO);
3207 }
3208 XFS_STATS_INC(xs_log_force_sleep);
3209 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3210 /*
3211 * No need to grab the log lock here since we're
3212 * only deciding whether or not to return EIO
3213 * and the memory read should be atomic.
3214 */
3215 if (iclog->ic_state & XLOG_STATE_IOERROR)
3216 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003218 if (log_flushed)
3219 *log_flushed = 1;
3220 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003221 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003223
3224 return 0;
3225 } while (iclog != log->l_iclog);
3226
3227 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003229}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003231/*
3232 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3233 * about errors or whether the log was flushed or not. This is the normal
3234 * interface to use when trying to unpin items or move the log forward.
3235 */
3236void
3237xfs_log_force_lsn(
3238 xfs_mount_t *mp,
3239 xfs_lsn_t lsn,
3240 uint flags)
3241{
3242 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003244 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3245 if (error) {
3246 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3247 "error %d returned.", error);
3248 }
3249}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
3251/*
3252 * Called when we want to mark the current iclog as being ready to sync to
3253 * disk.
3254 */
David Chinnera8272ce2007-11-23 16:28:09 +11003255STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3257{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003258 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3261 xlog_state_switch_iclogs(log, iclog, 0);
3262 } else {
3263 ASSERT(iclog->ic_state &
3264 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3265 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268
3269/*****************************************************************************
3270 *
3271 * TICKET functions
3272 *
3273 *****************************************************************************
3274 */
3275
3276/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003277 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003279void
3280xfs_log_ticket_put(
3281 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003283 ASSERT(atomic_read(&ticket->t_ref) > 0);
3284 if (atomic_dec_and_test(&ticket->t_ref)) {
3285 sv_destroy(&ticket->t_wait);
3286 kmem_zone_free(xfs_log_ticket_zone, ticket);
3287 }
3288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003290xlog_ticket_t *
3291xfs_log_ticket_get(
3292 xlog_ticket_t *ticket)
3293{
3294 ASSERT(atomic_read(&ticket->t_ref) > 0);
3295 atomic_inc(&ticket->t_ref);
3296 return ticket;
3297}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003300 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 */
David Chinnera8272ce2007-11-23 16:28:09 +11003302STATIC xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003303xlog_ticket_alloc(
3304 struct log *log,
3305 int unit_bytes,
3306 int cnt,
3307 char client,
3308 uint xflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003310 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003312 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
David Chinnereb01c9c2008-04-10 12:18:46 +10003314 tic = kmem_zone_zalloc(xfs_log_ticket_zone, KM_SLEEP|KM_MAYFAIL);
3315 if (!tic)
3316 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318 /*
3319 * Permanent reservations have up to 'cnt'-1 active log operations
3320 * in the log. A unit in this case is the amount of space for one
3321 * of these log operations. Normal reservations have a cnt of 1
3322 * and their unit amount is the total amount of space required.
3323 *
3324 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003325 * which occupy space in the on-disk log.
3326 *
3327 * Normal form of a transaction is:
3328 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3329 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3330 *
3331 * We need to account for all the leadup data and trailer data
3332 * around the transaction data.
3333 * And then we need to account for the worst case in terms of using
3334 * more space.
3335 * The worst case will happen if:
3336 * - the placement of the transaction happens to be such that the
3337 * roundoff is at its maximum
3338 * - the transaction data is synced before the commit record is synced
3339 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3340 * Therefore the commit record is in its own Log Record.
3341 * This can happen as the commit record is called with its
3342 * own region to xlog_write().
3343 * This then means that in the worst case, roundoff can happen for
3344 * the commit-rec as well.
3345 * The commit-rec is smaller than padding in this scenario and so it is
3346 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 */
3348
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003349 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003351 unit_bytes += sizeof(xfs_trans_header_t);
3352
3353 /* for start-rec */
3354 unit_bytes += sizeof(xlog_op_header_t);
3355
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003356 /*
3357 * for LR headers - the space for data in an iclog is the size minus
3358 * the space used for the headers. If we use the iclog size, then we
3359 * undercalculate the number of headers required.
3360 *
3361 * Furthermore - the addition of op headers for split-recs might
3362 * increase the space required enough to require more log and op
3363 * headers, so take that into account too.
3364 *
3365 * IMPORTANT: This reservation makes the assumption that if this
3366 * transaction is the first in an iclog and hence has the LR headers
3367 * accounted to it, then the remaining space in the iclog is
3368 * exclusively for this transaction. i.e. if the transaction is larger
3369 * than the iclog, it will be the only thing in that iclog.
3370 * Fundamentally, this means we must pass the entire log vector to
3371 * xlog_write to guarantee this.
3372 */
3373 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3374 num_headers = howmany(unit_bytes, iclog_space);
3375
3376 /* for split-recs - ophdrs added when data split over LRs */
3377 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3378
3379 /* add extra header reservations if we overrun */
3380 while (!num_headers ||
3381 howmany(unit_bytes, iclog_space) > num_headers) {
3382 unit_bytes += sizeof(xlog_op_header_t);
3383 num_headers++;
3384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 unit_bytes += log->l_iclog_hsize * num_headers;
3386
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003387 /* for commit-rec LR header - note: padding will subsume the ophdr */
3388 unit_bytes += log->l_iclog_hsize;
3389
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003390 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003391 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003392 log->l_mp->m_sb.sb_logsunit > 1) {
3393 /* log su roundoff */
3394 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3395 } else {
3396 /* BB roundoff */
3397 unit_bytes += 2*BBSIZE;
3398 }
3399
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003400 atomic_set(&tic->t_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 tic->t_unit_res = unit_bytes;
3402 tic->t_curr_res = unit_bytes;
3403 tic->t_cnt = cnt;
3404 tic->t_ocnt = cnt;
3405 tic->t_tid = (xlog_tid_t)((__psint_t)tic & 0xffffffff);
3406 tic->t_clientid = client;
3407 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003408 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 if (xflags & XFS_LOG_PERM_RESERV)
3410 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003411 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Christoph Hellwig0adba532007-08-30 17:21:46 +10003413 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003416}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418
3419/******************************************************************************
3420 *
3421 * Log debug routines
3422 *
3423 ******************************************************************************
3424 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003425#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426/*
3427 * Make sure that the destination ptr is within the valid data region of
3428 * one of the iclogs. This uses backup pointers stored in a different
3429 * part of the log in case we trash the log structure.
3430 */
3431void
3432xlog_verify_dest_ptr(xlog_t *log,
3433 __psint_t ptr)
3434{
3435 int i;
3436 int good_ptr = 0;
3437
3438 for (i=0; i < log->l_iclog_bufs; i++) {
3439 if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
3440 ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
3441 good_ptr++;
3442 }
3443 if (! good_ptr)
3444 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3445} /* xlog_verify_dest_ptr */
3446
3447STATIC void
3448xlog_verify_grant_head(xlog_t *log, int equals)
3449{
3450 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3451 if (equals)
3452 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3453 else
3454 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3455 } else {
3456 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3457 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3458 }
3459} /* xlog_verify_grant_head */
3460
3461/* check if it will fit */
3462STATIC void
3463xlog_verify_tail_lsn(xlog_t *log,
3464 xlog_in_core_t *iclog,
3465 xfs_lsn_t tail_lsn)
3466{
3467 int blocks;
3468
3469 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3470 blocks =
3471 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3472 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3473 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3474 } else {
3475 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3476
3477 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3478 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3479
3480 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3481 if (blocks < BTOBB(iclog->ic_offset) + 1)
3482 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3483 }
3484} /* xlog_verify_tail_lsn */
3485
3486/*
3487 * Perform a number of checks on the iclog before writing to disk.
3488 *
3489 * 1. Make sure the iclogs are still circular
3490 * 2. Make sure we have a good magic number
3491 * 3. Make sure we don't have magic numbers in the data
3492 * 4. Check fields of each log operation header for:
3493 * A. Valid client identifier
3494 * B. tid ptr value falls in valid ptr space (user space code)
3495 * C. Length in log record header is correct according to the
3496 * individual operation headers within record.
3497 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3498 * log, check the preceding blocks of the physical log to make sure all
3499 * the cycle numbers agree with the current cycle number.
3500 */
3501STATIC void
3502xlog_verify_iclog(xlog_t *log,
3503 xlog_in_core_t *iclog,
3504 int count,
3505 boolean_t syncing)
3506{
3507 xlog_op_header_t *ophead;
3508 xlog_in_core_t *icptr;
3509 xlog_in_core_2_t *xhdr;
3510 xfs_caddr_t ptr;
3511 xfs_caddr_t base_ptr;
3512 __psint_t field_offset;
3513 __uint8_t clientid;
3514 int len, i, j, k, op_len;
3515 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003518 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 icptr = log->l_iclog;
3520 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003521 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 xlog_panic("xlog_verify_iclog: invalid ptr");
3523 icptr = icptr->ic_next;
3524 }
3525 if (icptr != log->l_iclog)
3526 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003527 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
3529 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003530 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 xlog_panic("xlog_verify_iclog: invalid magic num");
3532
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003533 ptr = (xfs_caddr_t) &iclog->ic_header;
3534 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003536 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 xlog_panic("xlog_verify_iclog: unexpected magic num");
3538 }
3539
3540 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003541 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 ptr = iclog->ic_datap;
3543 base_ptr = ptr;
3544 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003545 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 for (i = 0; i < len; i++) {
3547 ophead = (xlog_op_header_t *)ptr;
3548
3549 /* clientid is only 1 byte */
3550 field_offset = (__psint_t)
3551 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3552 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3553 clientid = ophead->oh_clientid;
3554 } else {
3555 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3556 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3557 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3558 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003559 clientid = xlog_get_client_id(
3560 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003562 clientid = xlog_get_client_id(
3563 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
3565 }
3566 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003567 cmn_err(CE_WARN, "xlog_verify_iclog: "
3568 "invalid clientid %d op 0x%p offset 0x%lx",
3569 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
3571 /* check length */
3572 field_offset = (__psint_t)
3573 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3574 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003575 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 } else {
3577 idx = BTOBBT((__psint_t)&ophead->oh_len -
3578 (__psint_t)iclog->ic_datap);
3579 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3580 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3581 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003582 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003584 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 }
3586 }
3587 ptr += sizeof(xlog_op_header_t) + op_len;
3588 }
3589} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003590#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
3592/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003593 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 */
3595STATIC int
3596xlog_state_ioerror(
3597 xlog_t *log)
3598{
3599 xlog_in_core_t *iclog, *ic;
3600
3601 iclog = log->l_iclog;
3602 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3603 /*
3604 * Mark all the incore logs IOERROR.
3605 * From now on, no log flushes will result.
3606 */
3607 ic = iclog;
3608 do {
3609 ic->ic_state = XLOG_STATE_IOERROR;
3610 ic = ic->ic_next;
3611 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
3614 /*
3615 * Return non-zero, if state transition has already happened.
3616 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003617 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618}
3619
3620/*
3621 * This is called from xfs_force_shutdown, when we're forcibly
3622 * shutting down the filesystem, typically because of an IO error.
3623 * Our main objectives here are to make sure that:
3624 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3625 * parties to find out, 'atomically'.
3626 * b. those who're sleeping on log reservations, pinned objects and
3627 * other resources get woken up, and be told the bad news.
3628 * c. nothing new gets queued up after (a) and (b) are done.
3629 * d. if !logerror, flush the iclogs to disk, then seal them off
3630 * for business.
3631 */
3632int
3633xfs_log_force_umount(
3634 struct xfs_mount *mp,
3635 int logerror)
3636{
3637 xlog_ticket_t *tic;
3638 xlog_t *log;
3639 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
3641 log = mp->m_log;
3642
3643 /*
3644 * If this happens during log recovery, don't worry about
3645 * locking; the log isn't open for business yet.
3646 */
3647 if (!log ||
3648 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3649 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003650 if (mp->m_sb_bp)
3651 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 }
3654
3655 /*
3656 * Somebody could've already done the hard work for us.
3657 * No need to get locks for this.
3658 */
3659 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3660 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003661 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 }
3663 retval = 0;
3664 /*
3665 * We must hold both the GRANT lock and the LOG lock,
3666 * before we mark the filesystem SHUTDOWN and wake
3667 * everybody up to tell the bad news.
3668 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003669 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003670 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003672 if (mp->m_sb_bp)
3673 XFS_BUF_DONE(mp->m_sb_bp);
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 /*
3676 * This flag is sort of redundant because of the mount flag, but
3677 * it's good to maintain the separation between the log and the rest
3678 * of XFS.
3679 */
3680 log->l_flags |= XLOG_IO_ERROR;
3681
3682 /*
3683 * If we hit a log error, we want to mark all the iclogs IOERROR
3684 * while we're still holding the loglock.
3685 */
3686 if (logerror)
3687 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003688 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690 /*
3691 * We don't want anybody waiting for log reservations
3692 * after this. That means we have to wake up everybody
3693 * queued up on reserve_headq as well as write_headq.
3694 * In addition, we make sure in xlog_{re}grant_log_space
3695 * that we don't enqueue anything once the SHUTDOWN flag
3696 * is set, and this action is protected by the GRANTLOCK.
3697 */
3698 if ((tic = log->l_reserve_headq)) {
3699 do {
David Chinner12017fa2008-08-13 16:34:31 +10003700 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 tic = tic->t_next;
3702 } while (tic != log->l_reserve_headq);
3703 }
3704
3705 if ((tic = log->l_write_headq)) {
3706 do {
David Chinner12017fa2008-08-13 16:34:31 +10003707 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 tic = tic->t_next;
3709 } while (tic != log->l_write_headq);
3710 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003711 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003713 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 ASSERT(!logerror);
3715 /*
3716 * Force the incore logs to disk before shutting the
3717 * log down completely.
3718 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003719 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3720
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003721 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003723 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 }
3725 /*
3726 * Wake up everybody waiting on xfs_log_force.
3727 * Callback all log item committed functions as if the
3728 * log writes were completed.
3729 */
3730 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3731
3732#ifdef XFSERRORDEBUG
3733 {
3734 xlog_in_core_t *iclog;
3735
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003736 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 iclog = log->l_iclog;
3738 do {
3739 ASSERT(iclog->ic_callback == 0);
3740 iclog = iclog->ic_next;
3741 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003742 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
3744#endif
3745 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003746 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003749STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750xlog_iclogs_empty(xlog_t *log)
3751{
3752 xlog_in_core_t *iclog;
3753
3754 iclog = log->l_iclog;
3755 do {
3756 /* endianness does not matter here, zero is zero in
3757 * any language.
3758 */
3759 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 iclog = iclog->ic_next;
3762 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003763 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764}