blob: 3038dd52c72aae8abf5b10cb344fc8235f4b1ba5 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* Local miscellaneous function prototypes */
Dave Chinner55b66332010-03-23 11:43:17 +110048STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 xlog_in_core_t **, xfs_lsn_t *);
50STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
51 xfs_buftarg_t *log_target,
52 xfs_daddr_t blk_offset,
53 int num_bblks);
54STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
55STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
Nathan Scottc41564b2006-03-29 08:55:14 +100056STATIC void xlog_dealloc_log(xlog_t *log);
Dave Chinner55b66332010-03-23 11:43:17 +110057STATIC int xlog_write(struct log *log, struct xfs_log_vec *log_vector,
58 struct xlog_ticket *tic, xfs_lsn_t *start_lsn,
59 xlog_in_core_t **commit_iclog, uint flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* local state machine functions */
62STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
63STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
64STATIC int xlog_state_get_iclog_space(xlog_t *log,
65 int len,
66 xlog_in_core_t **iclog,
67 xlog_ticket_t *ticket,
68 int *continued_write,
69 int *logoffsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070STATIC int xlog_state_release_iclog(xlog_t *log,
71 xlog_in_core_t *iclog);
72STATIC void xlog_state_switch_iclogs(xlog_t *log,
73 xlog_in_core_t *iclog,
74 int eventual_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
76
77/* local functions to manipulate grant head */
78STATIC int xlog_grant_log_space(xlog_t *log,
79 xlog_ticket_t *xtic);
80STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
81 int need_bytes);
82STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
83 xlog_ticket_t *ticket);
84STATIC int xlog_regrant_write_log_space(xlog_t *log,
85 xlog_ticket_t *ticket);
86STATIC void xlog_ungrant_log_space(xlog_t *log,
87 xlog_ticket_t *ticket);
88
89
90/* local ticket functions */
Dave Chinnercc09c0d2008-11-17 17:37:10 +110091STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int unit_bytes,
93 int count,
94 char clientid,
95 uint flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Nathan Scottcfcbbbd2005-11-02 15:12:04 +110097#if defined(DEBUG)
Christoph Hellwige6b1f272010-03-23 11:47:38 +110098STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
100STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
101 int count, boolean_t syncing);
102STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
103 xfs_lsn_t tail_lsn);
104#else
105#define xlog_verify_dest_ptr(a,b)
106#define xlog_verify_grant_head(a,b)
107#define xlog_verify_iclog(a,b,c,d)
108#define xlog_verify_tail_lsn(a,b,c)
109#endif
110
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000111STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100113
114static void
115xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
116{
117 if (*qp) {
118 tic->t_next = (*qp);
119 tic->t_prev = (*qp)->t_prev;
120 (*qp)->t_prev->t_next = tic;
121 (*qp)->t_prev = tic;
122 } else {
123 tic->t_prev = tic->t_next = tic;
124 *qp = tic;
125 }
126
127 tic->t_flags |= XLOG_TIC_IN_Q;
128}
129
130static void
131xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
132{
133 if (tic == tic->t_next) {
134 *qp = NULL;
135 } else {
136 *qp = tic->t_next;
137 tic->t_next->t_prev = tic->t_prev;
138 tic->t_prev->t_next = tic->t_next;
139 }
140
141 tic->t_next = tic->t_prev = NULL;
142 tic->t_flags &= ~XLOG_TIC_IN_Q;
143}
144
145static void
146xlog_grant_sub_space(struct log *log, int bytes)
147{
148 log->l_grant_write_bytes -= bytes;
149 if (log->l_grant_write_bytes < 0) {
150 log->l_grant_write_bytes += log->l_logsize;
151 log->l_grant_write_cycle--;
152 }
153
154 log->l_grant_reserve_bytes -= bytes;
155 if ((log)->l_grant_reserve_bytes < 0) {
156 log->l_grant_reserve_bytes += log->l_logsize;
157 log->l_grant_reserve_cycle--;
158 }
159
160}
161
162static void
163xlog_grant_add_space_write(struct log *log, int bytes)
164{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000165 int tmp = log->l_logsize - log->l_grant_write_bytes;
166 if (tmp > bytes)
167 log->l_grant_write_bytes += bytes;
168 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100169 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000170 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100171 }
172}
173
174static void
175xlog_grant_add_space_reserve(struct log *log, int bytes)
176{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000177 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
178 if (tmp > bytes)
179 log->l_grant_reserve_bytes += bytes;
180 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100181 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000182 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100183 }
184}
185
186static inline void
187xlog_grant_add_space(struct log *log, int bytes)
188{
189 xlog_grant_add_space_write(log, bytes);
190 xlog_grant_add_space_reserve(log, bytes);
191}
192
Christoph Hellwig0adba532007-08-30 17:21:46 +1000193static void
194xlog_tic_reset_res(xlog_ticket_t *tic)
195{
196 tic->t_res_num = 0;
197 tic->t_res_arr_sum = 0;
198 tic->t_res_num_ophdrs = 0;
199}
200
201static void
202xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
203{
204 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
205 /* add to overflow and start again */
206 tic->t_res_o_flow += tic->t_res_arr_sum;
207 tic->t_res_num = 0;
208 tic->t_res_arr_sum = 0;
209 }
210
211 tic->t_res_arr[tic->t_res_num].r_len = len;
212 tic->t_res_arr[tic->t_res_num].r_type = type;
213 tic->t_res_arr_sum += len;
214 tic->t_res_num++;
215}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * NOTES:
219 *
220 * 1. currblock field gets updated at startup and after in-core logs
221 * marked as with WANT_SYNC.
222 */
223
224/*
225 * This routine is called when a user of a log manager ticket is done with
226 * the reservation. If the ticket was ever used, then a commit record for
227 * the associated transaction is written out as a log operation header with
228 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
229 * a given ticket. If the ticket was one with a permanent reservation, then
230 * a few operations are done differently. Permanent reservation tickets by
231 * default don't release the reservation. They just commit the current
232 * transaction with the belief that the reservation is still needed. A flag
233 * must be passed in before permanent reservations are actually released.
234 * When these type of tickets are not released, they need to be set into
235 * the inited state again. By doing this, a start record will be written
236 * out when the next write occurs.
237 */
238xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000239xfs_log_done(
240 struct xfs_mount *mp,
241 struct xlog_ticket *ticket,
242 struct xlog_in_core **iclog,
243 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000245 struct log *log = mp->m_log;
246 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (XLOG_FORCED_SHUTDOWN(log) ||
249 /*
250 * If nothing was ever written, don't write out commit record.
251 * If we get an error, just continue and give back the log ticket.
252 */
253 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100254 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 lsn = (xfs_lsn_t) -1;
256 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
257 flags |= XFS_LOG_REL_PERM_RESERV;
258 }
259 }
260
261
262 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
263 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000264 trace_xfs_log_done_nonperm(log, ticket);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000267 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * request has been made to release a permanent reservation.
269 */
270 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100271 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000273 trace_xfs_log_done_perm(log, ticket);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000276 /* If this ticket was a permanent reservation and we aren't
277 * trying to release it, reset the inited flags; so next time
278 * we write, a start record will be written out.
279 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
287 * Attaches a new iclog I/O completion callback routine during
288 * transaction commit. If the log is in error state, a non-zero
289 * return code is handed back and the caller is responsible for
290 * executing the callback at an appropriate time.
291 */
292int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000293xfs_log_notify(
294 struct xfs_mount *mp,
295 struct xlog_in_core *iclog,
296 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000298 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David Chinner114d23a2008-04-10 12:18:39 +1000300 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
302 if (!abortflg) {
303 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
304 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
305 cb->cb_next = NULL;
306 *(iclog->ic_callback_tail) = cb;
307 iclog->ic_callback_tail = &(cb->cb_next);
308 }
David Chinner114d23a2008-04-10 12:18:39 +1000309 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000311}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000314xfs_log_release_iclog(
315 struct xfs_mount *mp,
316 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000318 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000319 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100320 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
323 return 0;
324}
325
326/*
327 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
328 * to the reservation.
329 * 2. Potentially, push buffers at tail of log to disk.
330 *
331 * Each reservation is going to reserve extra space for a log record header.
332 * When writes happen to the on-disk log, we don't subtract the length of the
333 * log record header from any reservation. By wasting space in each
334 * reservation, we prevent over allocation problems.
335 */
336int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000337xfs_log_reserve(
338 struct xfs_mount *mp,
339 int unit_bytes,
340 int cnt,
341 struct xlog_ticket **ticket,
342 __uint8_t client,
343 uint flags,
344 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000346 struct log *log = mp->m_log;
347 struct xlog_ticket *internal_ticket;
348 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
351 ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
352
353 if (XLOG_FORCED_SHUTDOWN(log))
354 return XFS_ERROR(EIO);
355
356 XFS_STATS_INC(xs_try_logspace);
357
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (*ticket != NULL) {
360 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000361 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000362
363 trace_xfs_log_reserve(log, internal_ticket);
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
366 retval = xlog_regrant_write_log_space(log, internal_ticket);
367 } else {
368 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100369 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 client, flags);
David Chinnereb01c9c2008-04-10 12:18:46 +1000371 if (!internal_ticket)
372 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000373 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000375
376 trace_xfs_log_reserve(log, internal_ticket);
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 xlog_grant_push_ail(mp,
379 (internal_ticket->t_unit_res *
380 internal_ticket->t_cnt));
381 retval = xlog_grant_log_space(log, internal_ticket);
382 }
383
384 return retval;
385} /* xfs_log_reserve */
386
387
388/*
389 * Mount a log filesystem
390 *
391 * mp - ubiquitous xfs mount point structure
392 * log_target - buftarg of on-disk log device
393 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
394 * num_bblocks - Number of BBSIZE blocks in on-disk log
395 *
396 * Return error or zero.
397 */
398int
David Chinner249a8c12008-02-05 12:13:32 +1100399xfs_log_mount(
400 xfs_mount_t *mp,
401 xfs_buftarg_t *log_target,
402 xfs_daddr_t blk_offset,
403 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
David Chinner249a8c12008-02-05 12:13:32 +1100405 int error;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
408 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
409 else {
410 cmn_err(CE_NOTE,
411 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
412 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000413 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
416 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200417 if (IS_ERR(mp->m_log)) {
418 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100419 goto out;
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
David Chinner249a8c12008-02-05 12:13:32 +1100423 * Initialize the AIL now we have a log.
424 */
David Chinner249a8c12008-02-05 12:13:32 +1100425 error = xfs_trans_ail_init(mp);
426 if (error) {
427 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100428 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100429 }
David Chinnera9c21c12008-10-30 17:39:35 +1100430 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100431
432 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * skip log recovery on a norecovery mount. pretend it all
434 * just worked.
435 */
436 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100437 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000440 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Eric Sandeen65be6052006-01-11 15:34:19 +1100442 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000445 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (error) {
447 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100448 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 }
451
452 /* Normal transactions can now occur */
453 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100456
457out_destroy_ail:
458 xfs_trans_ail_destroy(mp);
459out_free_log:
460 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100461out:
David Chinner249a8c12008-02-05 12:13:32 +1100462 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100463}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465/*
466 * Finish the recovery of the file system. This is separate from
467 * the xfs_log_mount() call, because it depends on the code in
468 * xfs_mountfs() to read in the root and real-time bitmap inodes
469 * between calling xfs_log_mount() and here.
470 *
471 * mp - ubiquitous xfs mount point structure
472 */
473int
Christoph Hellwig42490232008-08-13 16:49:32 +1000474xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 int error;
477
478 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000479 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 else {
481 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000482 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 return error;
486}
487
488/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * Final log writes as part of unmount.
490 *
491 * Mark the filesystem clean as unmount happens. Note that during relocation
492 * this routine needs to be executed as part of source-bag while the
493 * deallocation must not be done until source-end.
494 */
495
496/*
497 * Unmount record used to have a string "Unmount filesystem--" in the
498 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
499 * We just write the magic number now since that particular field isn't
500 * currently architecture converted and "nUmount" is a bit foo.
501 * As far as I know, there weren't any dependencies on the old behaviour.
502 */
503
504int
505xfs_log_unmount_write(xfs_mount_t *mp)
506{
507 xlog_t *log = mp->m_log;
508 xlog_in_core_t *iclog;
509#ifdef DEBUG
510 xlog_in_core_t *first_iclog;
511#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000512 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 xfs_lsn_t lsn;
514 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /*
517 * Don't write out unmount record on read-only mounts.
518 * Or, if we are doing a forced umount (typically because of IO errors).
519 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000520 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
522
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000523 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000524 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526#ifdef DEBUG
527 first_iclog = iclog = log->l_iclog;
528 do {
529 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
530 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
531 ASSERT(iclog->ic_offset == 0);
532 }
533 iclog = iclog->ic_next;
534 } while (iclog != first_iclog);
535#endif
536 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000537 error = xfs_log_reserve(mp, 600, 1, &tic,
538 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100540 /* the data section must be 32 bit size aligned */
541 struct {
542 __uint16_t magic;
543 __uint16_t pad1;
544 __uint32_t pad2; /* may as well make it 64 bits */
545 } magic = {
546 .magic = XLOG_UNMOUNT_TYPE,
547 };
548 struct xfs_log_iovec reg = {
549 .i_addr = (void *)&magic,
550 .i_len = sizeof(magic),
551 .i_type = XLOG_REG_TYPE_UNMOUNT,
552 };
553 struct xfs_log_vec vec = {
554 .lv_niovecs = 1,
555 .lv_iovecp = &reg,
556 };
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* remove inited flag */
Dave Chinner55b66332010-03-23 11:43:17 +1100559 tic->t_flags = 0;
560 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 NULL, XLOG_UNMOUNT_TRANS);
562 /*
563 * At this point, we're umounting anyway,
564 * so there's no point in transitioning log state
565 * to IOERROR. Just continue...
566 */
567 }
568
569 if (error) {
570 xfs_fs_cmn_err(CE_ALERT, mp,
571 "xfs_log_unmount: unmount record failed");
572 }
573
574
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000575 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100577 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100579 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000580 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000582 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
584 iclog->ic_state == XLOG_STATE_DIRTY)) {
585 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000586 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 &log->l_icloglock, s);
588 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000589 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000592 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000594 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000595 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000596 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100597 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 } else {
600 /*
601 * We're already in forced_shutdown mode, couldn't
602 * even attempt to write out the unmount transaction.
603 *
604 * Go through the motions of sync'ing and releasing
605 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000606 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * be in progress. Do this as a separate section of
608 * code so we'll know if we ever get stuck here that
609 * we're in this odd situation of trying to unmount
610 * a file system that went into forced_shutdown as
611 * the result of an unmount..
612 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000613 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100615 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100618 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000619 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000621 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
624 || iclog->ic_state == XLOG_STATE_DIRTY
625 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
626
David Chinner12017fa2008-08-13 16:34:31 +1000627 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 &log->l_icloglock, s);
629 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000630 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632 }
633
David Chinner1bb7d6b2008-04-10 12:24:38 +1000634 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635} /* xfs_log_unmount_write */
636
637/*
638 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100639 *
640 * We need to stop the aild from running before we destroy
641 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100644xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
David Chinner249a8c12008-02-05 12:13:32 +1100646 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000647 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Dave Chinner43f5efc2010-03-23 10:10:00 +1100650void
651xfs_log_item_init(
652 struct xfs_mount *mp,
653 struct xfs_log_item *item,
654 int type,
655 struct xfs_item_ops *ops)
656{
657 item->li_mountp = mp;
658 item->li_ailp = mp->m_ail;
659 item->li_type = type;
660 item->li_ops = ops;
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
664 * Write region vectors to log. The write happens using the space reservation
665 * of the ticket (tic). It is not a requirement that all writes for a given
Dave Chinner9b9fc2b72010-03-23 11:21:11 +1100666 * transaction occur with one call to xfs_log_write(). However, it is important
667 * to note that the transaction reservation code makes an assumption about the
668 * number of log headers a transaction requires that may be violated if you
669 * don't pass all the transaction vectors in one call....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
671int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000672xfs_log_write(
673 struct xfs_mount *mp,
674 struct xfs_log_iovec reg[],
675 int nentries,
676 struct xlog_ticket *tic,
677 xfs_lsn_t *start_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000679 struct log *log = mp->m_log;
680 int error;
Dave Chinner55b66332010-03-23 11:43:17 +1100681 struct xfs_log_vec vec = {
682 .lv_niovecs = nentries,
683 .lv_iovecp = reg,
684 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (XLOG_FORCED_SHUTDOWN(log))
687 return XFS_ERROR(EIO);
688
Dave Chinner55b66332010-03-23 11:43:17 +1100689 error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000690 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +1000691 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100692 return error;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000693}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695void
696xfs_log_move_tail(xfs_mount_t *mp,
697 xfs_lsn_t tail_lsn)
698{
699 xlog_ticket_t *tic;
700 xlog_t *log = mp->m_log;
701 int need_bytes, free_bytes, cycle, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (XLOG_FORCED_SHUTDOWN(log))
704 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (tail_lsn == 0) {
707 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000708 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000710 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000713 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
716 * tail_lsn.
717 */
718 if (tail_lsn != 1) {
719 log->l_tail_lsn = tail_lsn;
720 }
721
722 if ((tic = log->l_write_headq)) {
723#ifdef DEBUG
724 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
725 panic("Recovery problem");
726#endif
727 cycle = log->l_grant_write_cycle;
728 bytes = log->l_grant_write_bytes;
729 free_bytes = xlog_space_left(log, cycle, bytes);
730 do {
731 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
732
733 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
734 break;
735 tail_lsn = 0;
736 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000737 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 tic = tic->t_next;
739 } while (tic != log->l_write_headq);
740 }
741 if ((tic = log->l_reserve_headq)) {
742#ifdef DEBUG
743 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
744 panic("Recovery problem");
745#endif
746 cycle = log->l_grant_reserve_cycle;
747 bytes = log->l_grant_reserve_bytes;
748 free_bytes = xlog_space_left(log, cycle, bytes);
749 do {
750 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
751 need_bytes = tic->t_unit_res*tic->t_cnt;
752 else
753 need_bytes = tic->t_unit_res;
754 if (free_bytes < need_bytes && tail_lsn != 1)
755 break;
756 tail_lsn = 0;
757 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000758 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 tic = tic->t_next;
760 } while (tic != log->l_reserve_headq);
761 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000762 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763} /* xfs_log_move_tail */
764
765/*
766 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000767 * that needs to be covered. To begin the transition to the idle state
768 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
769 * If we are then in a state where covering is needed, the caller is informed
770 * that dummy transactions are required to move the log into the idle state.
771 *
772 * Because this is called as part of the sync process, we should also indicate
773 * that dummy transactions should be issued in anything but the covered or
774 * idle states. This ensures that the log tail is accurately reflected in
775 * the log at the end of the sync, hence if a crash occurrs avoids replay
776 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
778int
779xfs_log_need_covered(xfs_mount_t *mp)
780{
David Chinner27d8d5f2008-10-30 17:38:39 +1100781 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
David Chinner92821e22007-05-24 15:26:31 +1000784 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return 0;
786
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000787 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000788 switch (log->l_covered_state) {
789 case XLOG_STATE_COVER_DONE:
790 case XLOG_STATE_COVER_DONE2:
791 case XLOG_STATE_COVER_IDLE:
792 break;
793 case XLOG_STATE_COVER_NEED:
794 case XLOG_STATE_COVER_NEED2:
795 if (!xfs_trans_ail_tail(log->l_ailp) &&
796 xlog_iclogs_empty(log)) {
797 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
798 log->l_covered_state = XLOG_STATE_COVER_DONE;
799 else
800 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000802 /* FALLTHRU */
803 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000805 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000807 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100808 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811/******************************************************************************
812 *
813 * local routines
814 *
815 ******************************************************************************
816 */
817
818/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
819 * The log manager must keep track of the last LR which was committed
820 * to disk. The lsn of this LR will become the new tail_lsn whenever
821 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
822 * the situation where stuff could be written into the log but nothing
823 * was ever in the AIL when asked. Eventually, we panic since the
824 * tail hits the head.
825 *
826 * We may be holding the log iclog lock upon entering this routine.
827 */
828xfs_lsn_t
829xlog_assign_tail_lsn(xfs_mount_t *mp)
830{
831 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 xlog_t *log = mp->m_log;
833
David Chinner5b00f142008-10-30 17:39:00 +1100834 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000835 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (tail_lsn != 0) {
837 log->l_tail_lsn = tail_lsn;
838 } else {
839 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
840 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000841 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 return tail_lsn;
844} /* xlog_assign_tail_lsn */
845
846
847/*
848 * Return the space in the log between the tail and the head. The head
849 * is passed in the cycle/bytes formal parms. In the special case where
850 * the reserve head has wrapped passed the tail, this calculation is no
851 * longer valid. In this case, just return 0 which means there is no space
852 * in the log. This works for all places where this function is called
853 * with the reserve head. Of course, if the write head were to ever
854 * wrap the tail, we should blow up. Rather than catch this case here,
855 * we depend on other ASSERTions in other parts of the code. XXXmiken
856 *
857 * This code also handles the case where the reservation head is behind
858 * the tail. The details of this case are described below, but the end
859 * result is that we return the size of the log as the amount of space left.
860 */
David Chinnera8272ce2007-11-23 16:28:09 +1100861STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862xlog_space_left(xlog_t *log, int cycle, int bytes)
863{
864 int free_bytes;
865 int tail_bytes;
866 int tail_cycle;
867
868 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
869 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
870 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
871 free_bytes = log->l_logsize - (bytes - tail_bytes);
872 } else if ((tail_cycle + 1) < cycle) {
873 return 0;
874 } else if (tail_cycle < cycle) {
875 ASSERT(tail_cycle == (cycle - 1));
876 free_bytes = tail_bytes - bytes;
877 } else {
878 /*
879 * The reservation head is behind the tail.
880 * In this case we just want to return the size of the
881 * log as the amount of space left.
882 */
883 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
884 "xlog_space_left: head behind tail\n"
885 " tail_cycle = %d, tail_bytes = %d\n"
886 " GH cycle = %d, GH bytes = %d",
887 tail_cycle, tail_bytes, cycle, bytes);
888 ASSERT(0);
889 free_bytes = log->l_logsize;
890 }
891 return free_bytes;
892} /* xlog_space_left */
893
894
895/*
896 * Log function which is called when an io completes.
897 *
898 * The log manager needs its own routine, in order to control what
899 * happens with the buffer after the write completes.
900 */
901void
902xlog_iodone(xfs_buf_t *bp)
903{
904 xlog_in_core_t *iclog;
905 xlog_t *l;
906 int aborted;
907
908 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
909 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
910 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
911 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 l = iclog->ic_log;
913
914 /*
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100915 * If the _XFS_BARRIER_FAILED flag was set by a lower
916 * layer, it means the underlying device no longer supports
David Chinner0bfefc42007-05-14 18:24:23 +1000917 * barrier I/O. Warn loudly and turn off barriers.
918 */
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100919 if (bp->b_flags & _XFS_BARRIER_FAILED) {
920 bp->b_flags &= ~_XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +1000921 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
922 xfs_fs_cmn_err(CE_WARN, l->l_mp,
923 "xlog_iodone: Barriers are no longer supported"
924 " by device. Disabling barriers\n");
David Chinner0bfefc42007-05-14 18:24:23 +1000925 }
926
927 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * Race to shutdown the filesystem if we see an error.
929 */
930 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
931 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
932 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
933 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000934 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 /*
936 * This flag will be propagated to the trans-committed
937 * callback routines to let them know that the log-commit
938 * didn't succeed.
939 */
940 aborted = XFS_LI_ABORTED;
941 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
942 aborted = XFS_LI_ABORTED;
943 }
David Chinner3db296f2007-05-14 18:24:16 +1000944
945 /* log I/O is always issued ASYNC */
946 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000948 /*
949 * do not reference the buffer (bp) here as we could race
950 * with it being freed after writing the unmount record to the
951 * log.
952 */
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954} /* xlog_iodone */
955
956/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 * Return size of each in-core log record buffer.
958 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200959 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 *
961 * If the filesystem blocksize is too large, we may need to choose a
962 * larger size since the directory code currently logs entire blocks.
963 */
964
965STATIC void
966xlog_get_iclog_buffer_size(xfs_mount_t *mp,
967 xlog_t *log)
968{
969 int size;
970 int xhdrs;
971
Eric Sandeen1cb51252007-08-16 16:24:43 +1000972 if (mp->m_logbufs <= 0)
973 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
974 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100975 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 /*
978 * Buffer size passed in from mount system call.
979 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100980 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 size = log->l_iclog_size = mp->m_logbsize;
982 log->l_iclog_size_log = 0;
983 while (size != 1) {
984 log->l_iclog_size_log++;
985 size >>= 1;
986 }
987
Eric Sandeen62118702008-03-06 13:44:28 +1100988 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200989 /* # headers = size / 32k
990 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
992
993 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
994 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
995 xhdrs++;
996 log->l_iclog_hsize = xhdrs << BBSHIFT;
997 log->l_iclog_heads = xhdrs;
998 } else {
999 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1000 log->l_iclog_hsize = BBSIZE;
1001 log->l_iclog_heads = 1;
1002 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001003 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001006 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +10001007 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1008 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /* the default log size is 16k or 32k which is one header sector */
1011 log->l_iclog_hsize = BBSIZE;
1012 log->l_iclog_heads = 1;
1013
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001014done:
1015 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001016 if (mp->m_logbufs == 0)
1017 mp->m_logbufs = log->l_iclog_bufs;
1018 if (mp->m_logbsize == 0)
1019 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020} /* xlog_get_iclog_buffer_size */
1021
1022
1023/*
1024 * This routine initializes some of the log structure for a given mount point.
1025 * Its primary purpose is to fill in enough, so recovery can occur. However,
1026 * some other stuff may be filled in too.
1027 */
1028STATIC xlog_t *
1029xlog_alloc_log(xfs_mount_t *mp,
1030 xfs_buftarg_t *log_target,
1031 xfs_daddr_t blk_offset,
1032 int num_bblks)
1033{
1034 xlog_t *log;
1035 xlog_rec_header_t *head;
1036 xlog_in_core_t **iclogp;
1037 xlog_in_core_t *iclog, *prev_iclog=NULL;
1038 xfs_buf_t *bp;
1039 int i;
1040 int iclogsize;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001041 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +10001042 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Dave Chinner644c3562008-11-10 16:50:24 +11001044 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001045 if (!log) {
1046 xlog_warn("XFS: Log allocation failed: No memory!");
1047 goto out;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 log->l_mp = mp;
1051 log->l_targ = log_target;
1052 log->l_logsize = BBTOB(num_bblks);
1053 log->l_logBBstart = blk_offset;
1054 log->l_logBBsize = num_bblks;
1055 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1056 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1057
1058 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001059 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1061 log->l_last_sync_lsn = log->l_tail_lsn;
1062 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1063 log->l_grant_reserve_cycle = 1;
1064 log->l_grant_write_cycle = 1;
1065
Dave Chinnera6cb7672009-04-06 18:39:27 +02001066 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001067 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001068 log2_size = mp->m_sb.sb_logsectlog;
1069 if (log2_size < BBSHIFT) {
1070 xlog_warn("XFS: Log sector size too small "
1071 "(0x%x < 0x%x)", log2_size, BBSHIFT);
1072 goto out_free_log;
1073 }
1074
1075 log2_size -= BBSHIFT;
1076 if (log2_size > mp->m_sectbb_log) {
1077 xlog_warn("XFS: Log sector size too large "
1078 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001079 goto out_free_log;
1080 }
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001083 if (log2_size && log->l_logBBstart > 0 &&
1084 !xfs_sb_version_haslogv2(&mp->m_sb)) {
1085
Dave Chinnera6cb7672009-04-06 18:39:27 +02001086 xlog_warn("XFS: log sector size (0x%x) invalid "
Alex Elder69ce58f2010-04-20 17:09:59 +10001087 "for configuration.", log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001088 goto out_free_log;
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001091 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 xlog_get_iclog_buffer_size(mp, log);
1094
Dave Chinnera6cb7672009-04-06 18:39:27 +02001095 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001097 if (!bp)
1098 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1101 ASSERT(XFS_BUF_ISBUSY(bp));
1102 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1103 log->l_xbuf = bp;
1104
Eric Sandeen007c61c2007-10-11 17:43:56 +10001105 spin_lock_init(&log->l_icloglock);
1106 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001107 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1110 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1111
1112 iclogp = &log->l_iclog;
1113 /*
1114 * The amount of memory to allocate for the iclog structure is
1115 * rather funky due to the way the structure is defined. It is
1116 * done this way so that we can use different sizes for machines
1117 * with different amounts of memory. See the definition of
1118 * xlog_in_core_t in xfs_log_priv.h for details.
1119 */
1120 iclogsize = log->l_iclog_size;
1121 ASSERT(log->l_iclog_size >= 4096);
1122 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001123 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1124 if (!*iclogp)
1125 goto out_free_iclog;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 iclog->ic_prev = prev_iclog;
1129 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001130
1131 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001132 if (!bp)
1133 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001134 if (!XFS_BUF_CPSEMA(bp))
1135 ASSERT(0);
1136 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001137 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1138 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001139 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001140#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 head = &iclog->ic_header;
1144 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001145 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1146 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001147 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001148 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001150 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1154 iclog->ic_state = XLOG_STATE_ACTIVE;
1155 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001156 atomic_set(&iclog->ic_refcnt, 0);
1157 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001159 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1162 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001163 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1164 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 iclogp = &iclog->ic_next;
1167 }
1168 *iclogp = log->l_iclog; /* complete ring */
1169 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1170
1171 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001172
1173out_free_iclog:
1174 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1175 prev_iclog = iclog->ic_next;
1176 if (iclog->ic_bp) {
1177 sv_destroy(&iclog->ic_force_wait);
1178 sv_destroy(&iclog->ic_write_wait);
1179 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001180 }
1181 kmem_free(iclog);
1182 }
1183 spinlock_destroy(&log->l_icloglock);
1184 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001185 xfs_buf_free(log->l_xbuf);
1186out_free_log:
1187 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001188out:
1189 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190} /* xlog_alloc_log */
1191
1192
1193/*
1194 * Write out the commit record of a transaction associated with the given
1195 * ticket. Return the lsn of the commit record.
1196 */
1197STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001198xlog_commit_record(
1199 struct log *log,
1200 struct xlog_ticket *ticket,
1201 struct xlog_in_core **iclog,
1202 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Dave Chinner55b66332010-03-23 11:43:17 +11001204 struct xfs_mount *mp = log->l_mp;
1205 int error;
1206 struct xfs_log_iovec reg = {
1207 .i_addr = NULL,
1208 .i_len = 0,
1209 .i_type = XLOG_REG_TYPE_COMMIT,
1210 };
1211 struct xfs_log_vec vec = {
1212 .lv_niovecs = 1,
1213 .lv_iovecp = &reg,
1214 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001217 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1218 XLOG_COMMIT_TRANS);
1219 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001220 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001221 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224/*
1225 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1226 * log space. This code pushes on the lsn which would supposedly free up
1227 * the 25% which we want to leave free. We may need to adopt a policy which
1228 * pushes on an lsn which is further along in the log once we reach the high
1229 * water mark. In this manner, we would be creating a low water mark.
1230 */
David Chinnera8272ce2007-11-23 16:28:09 +11001231STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232xlog_grant_push_ail(xfs_mount_t *mp,
1233 int need_bytes)
1234{
1235 xlog_t *log = mp->m_log; /* pointer to the log */
1236 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1237 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1238 int free_blocks; /* free blocks left to write to */
1239 int free_bytes; /* free bytes left to write to */
1240 int threshold_block; /* block in lsn we'd like to be at */
1241 int threshold_cycle; /* lsn cycle we'd like to be at */
1242 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1245
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001246 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 free_bytes = xlog_space_left(log,
1248 log->l_grant_reserve_cycle,
1249 log->l_grant_reserve_bytes);
1250 tail_lsn = log->l_tail_lsn;
1251 free_blocks = BTOBBT(free_bytes);
1252
1253 /*
1254 * Set the threshold for the minimum number of free blocks in the
1255 * log to the maximum of what the caller needs, one quarter of the
1256 * log, and 256 blocks.
1257 */
1258 free_threshold = BTOBB(need_bytes);
1259 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1260 free_threshold = MAX(free_threshold, 256);
1261 if (free_blocks < free_threshold) {
1262 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1263 threshold_cycle = CYCLE_LSN(tail_lsn);
1264 if (threshold_block >= log->l_logBBsize) {
1265 threshold_block -= log->l_logBBsize;
1266 threshold_cycle += 1;
1267 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001268 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /* Don't pass in an lsn greater than the lsn of the last
1271 * log record known to be on disk.
1272 */
1273 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1274 threshold_lsn = log->l_last_sync_lsn;
1275 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001276 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /*
1279 * Get the transaction layer to kick the dirty buffers out to
1280 * disk asynchronously. No point in trying to do this if
1281 * the filesystem is shutting down.
1282 */
1283 if (threshold_lsn &&
1284 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001285 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286} /* xlog_grant_push_ail */
1287
Christoph Hellwig873ff552010-01-13 22:17:57 +00001288/*
1289 * The bdstrat callback function for log bufs. This gives us a central
1290 * place to trap bufs in case we get hit by a log I/O error and need to
1291 * shutdown. Actually, in practice, even when we didn't get a log error,
1292 * we transition the iclogs to IOERROR state *after* flushing all existing
1293 * iclogs to disk. This is because we don't want anymore new transactions to be
1294 * started or completed afterwards.
1295 */
1296STATIC int
1297xlog_bdstrat(
1298 struct xfs_buf *bp)
1299{
1300 struct xlog_in_core *iclog;
1301
1302 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1303 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1304 XFS_BUF_ERROR(bp, EIO);
1305 XFS_BUF_STALE(bp);
1306 xfs_biodone(bp);
1307 /*
1308 * It would seem logical to return EIO here, but we rely on
1309 * the log state machine to propagate I/O errors instead of
1310 * doing it here.
1311 */
1312 return 0;
1313 }
1314
1315 bp->b_flags |= _XBF_RUN_QUEUES;
1316 xfs_buf_iorequest(bp);
1317 return 0;
1318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320/*
1321 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1322 * fashion. Previously, we should have moved the current iclog
1323 * ptr in the log to point to the next available iclog. This allows further
1324 * write to continue while this code syncs out an iclog ready to go.
1325 * Before an in-core log can be written out, the data section must be scanned
1326 * to save away the 1st word of each BBSIZE block into the header. We replace
1327 * it with the current cycle count. Each BBSIZE block is tagged with the
1328 * cycle count because there in an implicit assumption that drives will
1329 * guarantee that entire 512 byte blocks get written at once. In other words,
1330 * we can't have part of a 512 byte block written and part not written. By
1331 * tagging each block, we will know which blocks are valid when recovering
1332 * after an unclean shutdown.
1333 *
1334 * This routine is single threaded on the iclog. No other thread can be in
1335 * this routine with the same iclog. Changing contents of iclog can there-
1336 * fore be done without grabbing the state machine lock. Updating the global
1337 * log will require grabbing the lock though.
1338 *
1339 * The entire log manager uses a logical block numbering scheme. Only
1340 * log_sync (and then only bwrite()) know about the fact that the log may
1341 * not start with block zero on a given device. The log block start offset
1342 * is added immediately before calling bwrite().
1343 */
1344
David Chinnera8272ce2007-11-23 16:28:09 +11001345STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346xlog_sync(xlog_t *log,
1347 xlog_in_core_t *iclog)
1348{
1349 xfs_caddr_t dptr; /* pointer to byte sized element */
1350 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001351 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 uint count; /* byte count of bwrite */
1353 uint count_init; /* initial count before roundup */
1354 int roundoff; /* roundoff to BB or stripe */
1355 int split = 0; /* split write into two regions */
1356 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001357 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001360 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 /* Add for LR header */
1363 count_init = log->l_iclog_hsize + iclog->ic_offset;
1364
1365 /* Round out the log write size */
1366 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1367 /* we have a v2 stripe unit to use */
1368 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1369 } else {
1370 count = BBTOB(BTOBB(count_init));
1371 }
1372 roundoff = count - count_init;
1373 ASSERT(roundoff >= 0);
1374 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1375 roundoff < log->l_mp->m_sb.sb_logsunit)
1376 ||
1377 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1378 roundoff < BBTOB(1)));
1379
1380 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001381 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001382 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001383 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /* put cycle number in every block */
1386 xlog_pack_data(log, iclog, roundoff);
1387
1388 /* real byte length */
1389 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001390 iclog->ic_header.h_len =
1391 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001393 iclog->ic_header.h_len =
1394 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Nathan Scottf5faad72006-07-28 17:04:44 +10001397 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1399 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001400 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1403
1404 /* Do we need to split this write into 2 parts? */
1405 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1406 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1407 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1408 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1409 } else {
1410 iclog->ic_bwritecnt = 1;
1411 }
David Chinner511105b2007-05-24 15:21:57 +10001412 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001414 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 XFS_BUF_BUSY(bp);
1416 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001417 bp->b_flags |= XBF_LOG_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /*
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001419 * Do an ordered write for the log block.
Nathan Scottf5faad72006-07-28 17:04:44 +10001420 * Its unnecessary to flush the first split block in the log wrap case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
Nathan Scottf5faad72006-07-28 17:04:44 +10001422 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001423 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1426 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1427
1428 xlog_verify_iclog(log, iclog, count, B_TRUE);
1429
1430 /* account for log which doesn't start at block #0 */
1431 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1432 /*
1433 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1434 * is shutting down.
1435 */
1436 XFS_BUF_WRITE(bp);
1437
Christoph Hellwig873ff552010-01-13 22:17:57 +00001438 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1440 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001441 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001444 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1446 (unsigned long)1);
1447 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1448 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1449 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1450 (__psint_t)count), split);
1451 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001452 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 XFS_BUF_BUSY(bp);
1454 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001455 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001456 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1457 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 dptr = XFS_BUF_PTR(bp);
1459 /*
1460 * Bump the cycle numbers at the start of each block
1461 * since this part of the buffer is at the start of
1462 * a new cycle. Watch out for the header magic number
1463 * case, though.
1464 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001465 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001466 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001467 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001468 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 dptr += BBSIZE;
1470 }
1471
1472 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1473 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1474
Nathan Scottc41564b2006-03-29 08:55:14 +10001475 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1477 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001478 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1480 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001481 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485} /* xlog_sync */
1486
1487
1488/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001489 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 */
David Chinnera8272ce2007-11-23 16:28:09 +11001491STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001492xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int i;
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 iclog = log->l_iclog;
1498 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001499 sv_destroy(&iclog->ic_force_wait);
1500 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001503 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 iclog = next_iclog;
1505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 spinlock_destroy(&log->l_icloglock);
1507 spinlock_destroy(&log->l_grant_lock);
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001511 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001512} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514/*
1515 * Update counters atomically now that memcpy is done.
1516 */
1517/* ARGSUSED */
1518static inline void
1519xlog_state_finish_copy(xlog_t *log,
1520 xlog_in_core_t *iclog,
1521 int record_cnt,
1522 int copy_bytes)
1523{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001524 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001526 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 iclog->ic_offset += copy_bytes;
1528
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001529 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530} /* xlog_state_finish_copy */
1531
1532
1533
1534
1535/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001536 * print out info relating to regions written which consume
1537 * the reservation
1538 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001539STATIC void
1540xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1541{
1542 uint i;
1543 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1544
1545 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1546 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1547 "bformat",
1548 "bchunk",
1549 "efi_format",
1550 "efd_format",
1551 "iformat",
1552 "icore",
1553 "iext",
1554 "ibroot",
1555 "ilocal",
1556 "iattr_ext",
1557 "iattr_broot",
1558 "iattr_local",
1559 "qformat",
1560 "dquot",
1561 "quotaoff",
1562 "LR header",
1563 "unmount",
1564 "commit",
1565 "trans header"
1566 };
1567 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1568 "SETATTR_NOT_SIZE",
1569 "SETATTR_SIZE",
1570 "INACTIVE",
1571 "CREATE",
1572 "CREATE_TRUNC",
1573 "TRUNCATE_FILE",
1574 "REMOVE",
1575 "LINK",
1576 "RENAME",
1577 "MKDIR",
1578 "RMDIR",
1579 "SYMLINK",
1580 "SET_DMATTRS",
1581 "GROWFS",
1582 "STRAT_WRITE",
1583 "DIOSTRAT",
1584 "WRITE_SYNC",
1585 "WRITEID",
1586 "ADDAFORK",
1587 "ATTRINVAL",
1588 "ATRUNCATE",
1589 "ATTR_SET",
1590 "ATTR_RM",
1591 "ATTR_FLAG",
1592 "CLEAR_AGI_BUCKET",
1593 "QM_SBCHANGE",
1594 "DUMMY1",
1595 "DUMMY2",
1596 "QM_QUOTAOFF",
1597 "QM_DQALLOC",
1598 "QM_SETQLIM",
1599 "QM_DQCLUSTER",
1600 "QM_QINOCREATE",
1601 "QM_QUOTAOFF_END",
1602 "SB_UNIT",
1603 "FSYNC_TS",
1604 "GROWFSRT_ALLOC",
1605 "GROWFSRT_ZERO",
1606 "GROWFSRT_FREE",
1607 "SWAPEXT"
1608 };
1609
1610 xfs_fs_cmn_err(CE_WARN, mp,
1611 "xfs_log_write: reservation summary:\n"
1612 " trans type = %s (%u)\n"
1613 " unit res = %d bytes\n"
1614 " current res = %d bytes\n"
1615 " total reg = %u bytes (o/flow = %u bytes)\n"
1616 " ophdrs = %u (ophdr space = %u bytes)\n"
1617 " ophdr + reg = %u bytes\n"
1618 " num regions = %u\n",
1619 ((ticket->t_trans_type <= 0 ||
1620 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1621 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1622 ticket->t_trans_type,
1623 ticket->t_unit_res,
1624 ticket->t_curr_res,
1625 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1626 ticket->t_res_num_ophdrs, ophdr_spc,
1627 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001628 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001629 ticket->t_res_num);
1630
1631 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001632 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001633 cmn_err(CE_WARN,
1634 "region[%u]: %s - %u bytes\n",
1635 i,
1636 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1637 "bad-rtype" : res_type_str[r_type-1]),
1638 ticket->t_res_arr[i].r_len);
1639 }
1640}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001641
1642/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001643 * Calculate the potential space needed by the log vector. Each region gets
1644 * its own xlog_op_header_t and may need to be double word aligned.
1645 */
1646static int
1647xlog_write_calc_vec_length(
1648 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001649 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001650{
Dave Chinner55b66332010-03-23 11:43:17 +11001651 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001652 int headers = 0;
1653 int len = 0;
1654 int i;
1655
1656 /* acct for start rec of xact */
1657 if (ticket->t_flags & XLOG_TIC_INITED)
1658 headers++;
1659
Dave Chinner55b66332010-03-23 11:43:17 +11001660 for (lv = log_vector; lv; lv = lv->lv_next) {
1661 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001662
Dave Chinner55b66332010-03-23 11:43:17 +11001663 for (i = 0; i < lv->lv_niovecs; i++) {
1664 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1665
1666 len += vecp->i_len;
1667 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1668 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001669 }
1670
1671 ticket->t_res_num_ophdrs += headers;
1672 len += headers * sizeof(struct xlog_op_header);
1673
1674 return len;
1675}
1676
1677/*
1678 * If first write for transaction, insert start record We can't be trying to
1679 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1680 */
1681static int
1682xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001683 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001684 struct xlog_ticket *ticket)
1685{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001686 if (!(ticket->t_flags & XLOG_TIC_INITED))
1687 return 0;
1688
1689 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1690 ophdr->oh_clientid = ticket->t_clientid;
1691 ophdr->oh_len = 0;
1692 ophdr->oh_flags = XLOG_START_TRANS;
1693 ophdr->oh_res2 = 0;
1694
1695 ticket->t_flags &= ~XLOG_TIC_INITED;
1696
1697 return sizeof(struct xlog_op_header);
1698}
1699
1700static xlog_op_header_t *
1701xlog_write_setup_ophdr(
1702 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001703 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001704 struct xlog_ticket *ticket,
1705 uint flags)
1706{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001707 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1708 ophdr->oh_clientid = ticket->t_clientid;
1709 ophdr->oh_res2 = 0;
1710
1711 /* are we copying a commit or unmount record? */
1712 ophdr->oh_flags = flags;
1713
1714 /*
1715 * We've seen logs corrupted with bad transaction client ids. This
1716 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1717 * and shut down the filesystem.
1718 */
1719 switch (ophdr->oh_clientid) {
1720 case XFS_TRANSACTION:
1721 case XFS_VOLUME:
1722 case XFS_LOG:
1723 break;
1724 default:
1725 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1726 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1727 ophdr->oh_clientid, ticket);
1728 return NULL;
1729 }
1730
1731 return ophdr;
1732}
1733
1734/*
1735 * Set up the parameters of the region copy into the log. This has
1736 * to handle region write split across multiple log buffers - this
1737 * state is kept external to this function so that this code can
1738 * can be written in an obvious, self documenting manner.
1739 */
1740static int
1741xlog_write_setup_copy(
1742 struct xlog_ticket *ticket,
1743 struct xlog_op_header *ophdr,
1744 int space_available,
1745 int space_required,
1746 int *copy_off,
1747 int *copy_len,
1748 int *last_was_partial_copy,
1749 int *bytes_consumed)
1750{
1751 int still_to_copy;
1752
1753 still_to_copy = space_required - *bytes_consumed;
1754 *copy_off = *bytes_consumed;
1755
1756 if (still_to_copy <= space_available) {
1757 /* write of region completes here */
1758 *copy_len = still_to_copy;
1759 ophdr->oh_len = cpu_to_be32(*copy_len);
1760 if (*last_was_partial_copy)
1761 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1762 *last_was_partial_copy = 0;
1763 *bytes_consumed = 0;
1764 return 0;
1765 }
1766
1767 /* partial write of region, needs extra log op header reservation */
1768 *copy_len = space_available;
1769 ophdr->oh_len = cpu_to_be32(*copy_len);
1770 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1771 if (*last_was_partial_copy)
1772 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1773 *bytes_consumed += *copy_len;
1774 (*last_was_partial_copy)++;
1775
1776 /* account for new log op header */
1777 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1778 ticket->t_res_num_ophdrs++;
1779
1780 return sizeof(struct xlog_op_header);
1781}
1782
1783static int
1784xlog_write_copy_finish(
1785 struct log *log,
1786 struct xlog_in_core *iclog,
1787 uint flags,
1788 int *record_cnt,
1789 int *data_cnt,
1790 int *partial_copy,
1791 int *partial_copy_len,
1792 int log_offset,
1793 struct xlog_in_core **commit_iclog)
1794{
1795 if (*partial_copy) {
1796 /*
1797 * This iclog has already been marked WANT_SYNC by
1798 * xlog_state_get_iclog_space.
1799 */
1800 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1801 *record_cnt = 0;
1802 *data_cnt = 0;
1803 return xlog_state_release_iclog(log, iclog);
1804 }
1805
1806 *partial_copy = 0;
1807 *partial_copy_len = 0;
1808
1809 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1810 /* no more space in this iclog - push it. */
1811 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1812 *record_cnt = 0;
1813 *data_cnt = 0;
1814
1815 spin_lock(&log->l_icloglock);
1816 xlog_state_want_sync(log, iclog);
1817 spin_unlock(&log->l_icloglock);
1818
1819 if (!commit_iclog)
1820 return xlog_state_release_iclog(log, iclog);
1821 ASSERT(flags & XLOG_COMMIT_TRANS);
1822 *commit_iclog = iclog;
1823 }
1824
1825 return 0;
1826}
1827
1828/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 * Write some region out to in-core log
1830 *
1831 * This will be called when writing externally provided regions or when
1832 * writing out a commit record for a given transaction.
1833 *
1834 * General algorithm:
1835 * 1. Find total length of this write. This may include adding to the
1836 * lengths passed in.
1837 * 2. Check whether we violate the tickets reservation.
1838 * 3. While writing to this iclog
1839 * A. Reserve as much space in this iclog as can get
1840 * B. If this is first write, save away start lsn
1841 * C. While writing this region:
1842 * 1. If first write of transaction, write start record
1843 * 2. Write log operation header (header per region)
1844 * 3. Find out if we can fit entire region into this iclog
1845 * 4. Potentially, verify destination memcpy ptr
1846 * 5. Memcpy (partial) region
1847 * 6. If partial copy, release iclog; otherwise, continue
1848 * copying more regions into current iclog
1849 * 4. Mark want sync bit (in simulation mode)
1850 * 5. Release iclog for potential flush to on-disk log.
1851 *
1852 * ERRORS:
1853 * 1. Panic if reservation is overrun. This should never happen since
1854 * reservation amounts are generated internal to the filesystem.
1855 * NOTES:
1856 * 1. Tickets are single threaded data structures.
1857 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1858 * syncing routine. When a single log_write region needs to span
1859 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1860 * on all log operation writes which don't contain the end of the
1861 * region. The XLOG_END_TRANS bit is used for the in-core log
1862 * operation which contains the end of the continued log_write region.
1863 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1864 * we don't really know exactly how much space will be used. As a result,
1865 * we don't update ic_offset until the end when we know exactly how many
1866 * bytes have been written out.
1867 */
David Chinnera8272ce2007-11-23 16:28:09 +11001868STATIC int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001869xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001870 struct log *log,
1871 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001872 struct xlog_ticket *ticket,
1873 xfs_lsn_t *start_lsn,
1874 struct xlog_in_core **commit_iclog,
1875 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001877 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001878 struct xfs_log_iovec *vecp;
1879 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001880 int len;
1881 int index;
1882 int partial_copy = 0;
1883 int partial_copy_len = 0;
1884 int contwr = 0;
1885 int record_cnt = 0;
1886 int data_cnt = 0;
1887 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001889 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Dave Chinner55b66332010-03-23 11:43:17 +11001891 len = xlog_write_calc_vec_length(ticket, log_vector);
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001892 if (ticket->t_curr_res < len) {
Dave Chinner55b66332010-03-23 11:43:17 +11001893 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894#ifdef DEBUG
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001895 xlog_panic(
1896 "xfs_log_write: reservation ran out. Need to up reservation");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897#else
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001898 /* Customer configurable panic */
Dave Chinner55b66332010-03-23 11:43:17 +11001899 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, log->l_mp,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001900 "xfs_log_write: reservation ran out. Need to up reservation");
1901
1902 /* If we did not panic, shutdown the filesystem */
Dave Chinner55b66332010-03-23 11:43:17 +11001903 xfs_force_shutdown(log->l_mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904#endif
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001905 }
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 ticket->t_curr_res -= len;
1908
Dave Chinner55b66332010-03-23 11:43:17 +11001909 index = 0;
1910 lv = log_vector;
1911 vecp = lv->lv_iovecp;
1912 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001913 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001914 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001916 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1917 &contwr, &log_offset);
1918 if (error)
1919 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001921 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001922 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001924 /* start_lsn is the first lsn written to. That's all we need. */
1925 if (!*start_lsn)
1926 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001928 /*
1929 * This loop writes out as many regions as can fit in the amount
1930 * of space which was allocated by xlog_state_get_iclog_space().
1931 */
Dave Chinner55b66332010-03-23 11:43:17 +11001932 while (lv && index < lv->lv_niovecs) {
1933 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001934 struct xlog_op_header *ophdr;
1935 int start_rec_copy;
1936 int copy_len;
1937 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Dave Chinner55b66332010-03-23 11:43:17 +11001939 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001940 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001942 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1943 if (start_rec_copy) {
1944 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001945 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001946 start_rec_copy);
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001949 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1950 if (!ophdr)
1951 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001953 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001954 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001956 len += xlog_write_setup_copy(ticket, ophdr,
1957 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001958 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001959 &copy_off, &copy_len,
1960 &partial_copy,
1961 &partial_copy_len);
1962 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001963
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001964 /* copy region */
1965 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001966 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1967 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001968
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001969 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1970 record_cnt++;
1971 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001973 error = xlog_write_copy_finish(log, iclog, flags,
1974 &record_cnt, &data_cnt,
1975 &partial_copy,
1976 &partial_copy_len,
1977 log_offset,
1978 commit_iclog);
1979 if (error)
1980 return error;
1981
1982 /*
1983 * if we had a partial copy, we need to get more iclog
1984 * space but we don't want to increment the region
1985 * index because there is still more is this region to
1986 * write.
1987 *
1988 * If we completed writing this region, and we flushed
1989 * the iclog (indicated by resetting of the record
1990 * count), then we also need to get more log space. If
1991 * this was the last record, though, we are done and
1992 * can just return.
1993 */
1994 if (partial_copy)
1995 break;
1996
Dave Chinner55b66332010-03-23 11:43:17 +11001997 if (++index == lv->lv_niovecs) {
1998 lv = lv->lv_next;
1999 index = 0;
2000 if (lv)
2001 vecp = lv->lv_iovecp;
2002 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002003 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11002004 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002005 return 0;
2006 break;
2007 }
2008 }
2009 }
2010
2011 ASSERT(len == 0);
2012
2013 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
2014 if (!commit_iclog)
2015 return xlog_state_release_iclog(log, iclog);
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 ASSERT(flags & XLOG_COMMIT_TRANS);
2018 *commit_iclog = iclog;
2019 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002020}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022
2023/*****************************************************************************
2024 *
2025 * State Machine functions
2026 *
2027 *****************************************************************************
2028 */
2029
2030/* Clean iclogs starting from the head. This ordering must be
2031 * maintained, so an iclog doesn't become ACTIVE beyond one that
2032 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002033 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 * iclog is trying to sync to disk.
2035 *
2036 * State Change: DIRTY -> ACTIVE
2037 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002038STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039xlog_state_clean_log(xlog_t *log)
2040{
2041 xlog_in_core_t *iclog;
2042 int changed = 0;
2043
2044 iclog = log->l_iclog;
2045 do {
2046 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2047 iclog->ic_state = XLOG_STATE_ACTIVE;
2048 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002049 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 /*
2051 * If the number of ops in this iclog indicate it just
2052 * contains the dummy transaction, we can
2053 * change state into IDLE (the second time around).
2054 * Otherwise we should change the state into
2055 * NEED a dummy.
2056 * We don't need to cover the dummy.
2057 */
2058 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002059 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2060 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 changed = 1;
2062 } else {
2063 /*
2064 * We have two dirty iclogs so start over
2065 * This could also be num of ops indicates
2066 * this is not the dummy going out.
2067 */
2068 changed = 2;
2069 }
2070 iclog->ic_header.h_num_logops = 0;
2071 memset(iclog->ic_header.h_cycle_data, 0,
2072 sizeof(iclog->ic_header.h_cycle_data));
2073 iclog->ic_header.h_lsn = 0;
2074 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2075 /* do nothing */;
2076 else
2077 break; /* stop cleaning */
2078 iclog = iclog->ic_next;
2079 } while (iclog != log->l_iclog);
2080
2081 /* log is locked when we are called */
2082 /*
2083 * Change state for the dummy log recording.
2084 * We usually go to NEED. But we go to NEED2 if the changed indicates
2085 * we are done writing the dummy record.
2086 * If we are done with the second dummy recored (DONE2), then
2087 * we go to IDLE.
2088 */
2089 if (changed) {
2090 switch (log->l_covered_state) {
2091 case XLOG_STATE_COVER_IDLE:
2092 case XLOG_STATE_COVER_NEED:
2093 case XLOG_STATE_COVER_NEED2:
2094 log->l_covered_state = XLOG_STATE_COVER_NEED;
2095 break;
2096
2097 case XLOG_STATE_COVER_DONE:
2098 if (changed == 1)
2099 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2100 else
2101 log->l_covered_state = XLOG_STATE_COVER_NEED;
2102 break;
2103
2104 case XLOG_STATE_COVER_DONE2:
2105 if (changed == 1)
2106 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2107 else
2108 log->l_covered_state = XLOG_STATE_COVER_NEED;
2109 break;
2110
2111 default:
2112 ASSERT(0);
2113 }
2114 }
2115} /* xlog_state_clean_log */
2116
2117STATIC xfs_lsn_t
2118xlog_get_lowest_lsn(
2119 xlog_t *log)
2120{
2121 xlog_in_core_t *lsn_log;
2122 xfs_lsn_t lowest_lsn, lsn;
2123
2124 lsn_log = log->l_iclog;
2125 lowest_lsn = 0;
2126 do {
2127 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002128 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if ((lsn && !lowest_lsn) ||
2130 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2131 lowest_lsn = lsn;
2132 }
2133 }
2134 lsn_log = lsn_log->ic_next;
2135 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002136 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139
2140STATIC void
2141xlog_state_do_callback(
2142 xlog_t *log,
2143 int aborted,
2144 xlog_in_core_t *ciclog)
2145{
2146 xlog_in_core_t *iclog;
2147 xlog_in_core_t *first_iclog; /* used to know when we've
2148 * processed all iclogs once */
2149 xfs_log_callback_t *cb, *cb_next;
2150 int flushcnt = 0;
2151 xfs_lsn_t lowest_lsn;
2152 int ioerrors; /* counter: iclogs with errors */
2153 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2154 int funcdidcallbacks; /* flag: function did callbacks */
2155 int repeats; /* for issuing console warnings if
2156 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002157 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002159 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 first_iclog = iclog = log->l_iclog;
2161 ioerrors = 0;
2162 funcdidcallbacks = 0;
2163 repeats = 0;
2164
2165 do {
2166 /*
2167 * Scan all iclogs starting with the one pointed to by the
2168 * log. Reset this starting point each time the log is
2169 * unlocked (during callbacks).
2170 *
2171 * Keep looping through iclogs until one full pass is made
2172 * without running any callbacks.
2173 */
2174 first_iclog = log->l_iclog;
2175 iclog = log->l_iclog;
2176 loopdidcallbacks = 0;
2177 repeats++;
2178
2179 do {
2180
2181 /* skip all iclogs in the ACTIVE & DIRTY states */
2182 if (iclog->ic_state &
2183 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2184 iclog = iclog->ic_next;
2185 continue;
2186 }
2187
2188 /*
2189 * Between marking a filesystem SHUTDOWN and stopping
2190 * the log, we do flush all iclogs to disk (if there
2191 * wasn't a log I/O error). So, we do want things to
2192 * go smoothly in case of just a SHUTDOWN w/o a
2193 * LOG_IO_ERROR.
2194 */
2195 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2196 /*
2197 * Can only perform callbacks in order. Since
2198 * this iclog is not in the DONE_SYNC/
2199 * DO_CALLBACK state, we skip the rest and
2200 * just try to clean up. If we set our iclog
2201 * to DO_CALLBACK, we will not process it when
2202 * we retry since a previous iclog is in the
2203 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002204 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
2206 if (!(iclog->ic_state &
2207 (XLOG_STATE_DONE_SYNC |
2208 XLOG_STATE_DO_CALLBACK))) {
2209 if (ciclog && (ciclog->ic_state ==
2210 XLOG_STATE_DONE_SYNC)) {
2211 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2212 }
2213 break;
2214 }
2215 /*
2216 * We now have an iclog that is in either the
2217 * DO_CALLBACK or DONE_SYNC states. The other
2218 * states (WANT_SYNC, SYNCING, or CALLBACK were
2219 * caught by the above if and are going to
2220 * clean (i.e. we aren't doing their callbacks)
2221 * see the above if.
2222 */
2223
2224 /*
2225 * We will do one more check here to see if we
2226 * have chased our tail around.
2227 */
2228
2229 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002230 if (lowest_lsn &&
2231 XFS_LSN_CMP(lowest_lsn,
2232 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 iclog = iclog->ic_next;
2234 continue; /* Leave this iclog for
2235 * another thread */
2236 }
2237
2238 iclog->ic_state = XLOG_STATE_CALLBACK;
2239
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002240 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002243 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 * No one else can be here except us.
2245 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002246 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002247 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2248 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2249 log->l_last_sync_lsn =
2250 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002251 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002254 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 ioerrors++;
2256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
David Chinner114d23a2008-04-10 12:18:39 +10002258 /*
2259 * Keep processing entries in the callback list until
2260 * we come around and it is empty. We need to
2261 * atomically see that the list is empty and change the
2262 * state to DIRTY so that we don't miss any more
2263 * callbacks being added.
2264 */
2265 spin_lock(&iclog->ic_callback_lock);
2266 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002267 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 iclog->ic_callback_tail = &(iclog->ic_callback);
2269 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002270 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002273 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 cb_next = cb->cb_next;
2275 cb->cb_func(cb->cb_arg, aborted);
2276 }
David Chinner114d23a2008-04-10 12:18:39 +10002277 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 cb = iclog->ic_callback;
2279 }
2280
2281 loopdidcallbacks++;
2282 funcdidcallbacks++;
2283
David Chinner114d23a2008-04-10 12:18:39 +10002284 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002285 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002286 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2288 iclog->ic_state = XLOG_STATE_DIRTY;
2289
2290 /*
2291 * Transition from DIRTY to ACTIVE if applicable.
2292 * NOP if STATE_IOERROR.
2293 */
2294 xlog_state_clean_log(log);
2295
2296 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002297 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 iclog = iclog->ic_next;
2300 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002301
2302 if (repeats > 5000) {
2303 flushcnt += repeats;
2304 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002306 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002307 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
2309 } while (!ioerrors && loopdidcallbacks);
2310
2311 /*
2312 * make one last gasp attempt to see if iclogs are being left in
2313 * limbo..
2314 */
2315#ifdef DEBUG
2316 if (funcdidcallbacks) {
2317 first_iclog = iclog = log->l_iclog;
2318 do {
2319 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2320 /*
2321 * Terminate the loop if iclogs are found in states
2322 * which will cause other threads to clean up iclogs.
2323 *
2324 * SYNCING - i/o completion will go through logs
2325 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002326 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 * IOERROR - give up hope all ye who enter here
2328 */
2329 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2330 iclog->ic_state == XLOG_STATE_SYNCING ||
2331 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2332 iclog->ic_state == XLOG_STATE_IOERROR )
2333 break;
2334 iclog = iclog->ic_next;
2335 } while (first_iclog != iclog);
2336 }
2337#endif
2338
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002339 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2340 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002341 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002342
2343 if (wake)
2344 sv_broadcast(&log->l_flush_wait);
2345}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
2347
2348/*
2349 * Finish transitioning this iclog to the dirty state.
2350 *
2351 * Make sure that we completely execute this routine only when this is
2352 * the last call to the iclog. There is a good chance that iclog flushes,
2353 * when we reach the end of the physical log, get turned into 2 separate
2354 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2355 * routine. By using the reference count bwritecnt, we guarantee that only
2356 * the second completion goes through.
2357 *
2358 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002359 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 */
David Chinnera8272ce2007-11-23 16:28:09 +11002361STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362xlog_state_done_syncing(
2363 xlog_in_core_t *iclog,
2364 int aborted)
2365{
2366 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002368 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2371 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002372 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2374
2375
2376 /*
2377 * If we got an error, either on the first buffer, or in the case of
2378 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2379 * and none should ever be attempted to be written to disk
2380 * again.
2381 */
2382 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2383 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002384 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return;
2386 }
2387 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2388 }
2389
2390 /*
2391 * Someone could be sleeping prior to writing out the next
2392 * iclog buffer, we wake them all, one will get to do the
2393 * I/O, the others get to wait for the result.
2394 */
David Chinner12017fa2008-08-13 16:34:31 +10002395 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002396 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2398} /* xlog_state_done_syncing */
2399
2400
2401/*
2402 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002403 * sleep. We wait on the flush queue on the head iclog as that should be
2404 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2405 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 *
2407 * The in-core logs are used in a circular fashion. They are not used
2408 * out-of-order even when an iclog past the head is free.
2409 *
2410 * return:
2411 * * log_offset where xlog_write() can start writing into the in-core
2412 * log's data space.
2413 * * in-core log pointer to which xlog_write() should write.
2414 * * boolean indicating this is a continued write to an in-core log.
2415 * If this is the last write, then the in-core log's offset field
2416 * needs to be incremented, depending on the amount of data which
2417 * is copied.
2418 */
David Chinnera8272ce2007-11-23 16:28:09 +11002419STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420xlog_state_get_iclog_space(xlog_t *log,
2421 int len,
2422 xlog_in_core_t **iclogp,
2423 xlog_ticket_t *ticket,
2424 int *continued_write,
2425 int *logoffsetp)
2426{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 int log_offset;
2428 xlog_rec_header_t *head;
2429 xlog_in_core_t *iclog;
2430 int error;
2431
2432restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002433 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002435 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 return XFS_ERROR(EIO);
2437 }
2438
2439 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002440 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002442
2443 /* Wait for log writes to have flushed */
2444 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 goto restart;
2446 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002447
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 head = &iclog->ic_header;
2449
David Chinner155cc6b2008-03-06 13:44:14 +11002450 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 log_offset = iclog->ic_offset;
2452
2453 /* On the 1st write to an iclog, figure out lsn. This works
2454 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2455 * committing to. If the offset is set, that's how many blocks
2456 * must be written.
2457 */
2458 if (log_offset == 0) {
2459 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002460 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002461 log->l_iclog_hsize,
2462 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002463 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2464 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002465 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 ASSERT(log->l_curr_block >= 0);
2467 }
2468
2469 /* If there is enough room to write everything, then do it. Otherwise,
2470 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2471 * bit is on, so this will get flushed out. Don't update ic_offset
2472 * until you know exactly how many bytes get copied. Therefore, wait
2473 * until later to update ic_offset.
2474 *
2475 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2476 * can fit into remaining data section.
2477 */
2478 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2479 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2480
Dave Chinner49641f12008-07-11 17:43:55 +10002481 /*
2482 * If I'm the only one writing to this iclog, sync it to disk.
2483 * We need to do an atomic compare and decrement here to avoid
2484 * racing with concurrent atomic_dec_and_lock() calls in
2485 * xlog_state_release_iclog() when there is more than one
2486 * reference to the iclog.
2487 */
2488 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2489 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002490 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002491 error = xlog_state_release_iclog(log, iclog);
2492 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002493 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002495 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 }
2497 goto restart;
2498 }
2499
2500 /* Do we have enough room to write the full amount in the remainder
2501 * of this iclog? Or must we continue a write on the next iclog and
2502 * mark this iclog as completely taken? In the case where we switch
2503 * iclogs (to mark it taken), this particular iclog will release/sync
2504 * to disk in xlog_write().
2505 */
2506 if (len <= iclog->ic_size - iclog->ic_offset) {
2507 *continued_write = 0;
2508 iclog->ic_offset += len;
2509 } else {
2510 *continued_write = 1;
2511 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2512 }
2513 *iclogp = iclog;
2514
2515 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002516 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 *logoffsetp = log_offset;
2519 return 0;
2520} /* xlog_state_get_iclog_space */
2521
2522/*
2523 * Atomically get the log space required for a log ticket.
2524 *
2525 * Once a ticket gets put onto the reserveq, it will only return after
2526 * the needed reservation is satisfied.
2527 */
2528STATIC int
2529xlog_grant_log_space(xlog_t *log,
2530 xlog_ticket_t *tic)
2531{
2532 int free_bytes;
2533 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifdef DEBUG
2535 xfs_lsn_t tail_lsn;
2536#endif
2537
2538
2539#ifdef DEBUG
2540 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2541 panic("grant Recovery problem");
2542#endif
2543
2544 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002545 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002546
2547 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
2549 /* something is already sleeping; insert new transaction at end */
2550 if (log->l_reserve_headq) {
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002551 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002552
2553 trace_xfs_log_grant_sleep1(log, tic);
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 /*
2556 * Gotta check this before going to sleep, while we're
2557 * holding the grant lock.
2558 */
2559 if (XLOG_FORCED_SHUTDOWN(log))
2560 goto error_return;
2561
2562 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002563 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 /*
2565 * If we got an error, and the filesystem is shutting down,
2566 * we'll catch it down below. So just continue...
2567 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002568 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002569 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 }
2571 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2572 need_bytes = tic->t_unit_res*tic->t_ocnt;
2573 else
2574 need_bytes = tic->t_unit_res;
2575
2576redo:
2577 if (XLOG_FORCED_SHUTDOWN(log))
2578 goto error_return;
2579
2580 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2581 log->l_grant_reserve_bytes);
2582 if (free_bytes < need_bytes) {
2583 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002584 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002585
2586 trace_xfs_log_grant_sleep2(log, tic);
2587
Dave Chinner9d7fef72009-04-06 18:42:59 +02002588 spin_unlock(&log->l_grant_lock);
2589 xlog_grant_push_ail(log->l_mp, need_bytes);
2590 spin_lock(&log->l_grant_lock);
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002593 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Dave Chinner9d7fef72009-04-06 18:42:59 +02002595 spin_lock(&log->l_grant_lock);
2596 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002599 trace_xfs_log_grant_wake2(log, tic);
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 goto redo;
2602 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002603 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002606 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607#ifdef DEBUG
2608 tail_lsn = log->l_tail_lsn;
2609 /*
2610 * Check to make sure the grant write head didn't just over lap the
2611 * tail. If the cycles are the same, we can't be overlapping.
2612 * Otherwise, make sure that the cycles differ by exactly one and
2613 * check the byte count.
2614 */
2615 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2616 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2617 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2618 }
2619#endif
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002620 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002622 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 return 0;
2624
2625 error_return:
2626 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002627 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002628
2629 trace_xfs_log_grant_error(log, tic);
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 /*
2632 * If we are failing, make sure the ticket doesn't have any
2633 * current reservations. We don't want to add this back when
2634 * the ticket/transaction gets cancelled.
2635 */
2636 tic->t_curr_res = 0;
2637 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002638 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return XFS_ERROR(EIO);
2640} /* xlog_grant_log_space */
2641
2642
2643/*
2644 * Replenish the byte reservation required by moving the grant write head.
2645 *
2646 *
2647 */
2648STATIC int
2649xlog_regrant_write_log_space(xlog_t *log,
2650 xlog_ticket_t *tic)
2651{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 int free_bytes, need_bytes;
2653 xlog_ticket_t *ntic;
2654#ifdef DEBUG
2655 xfs_lsn_t tail_lsn;
2656#endif
2657
2658 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002659 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002662 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
2664#ifdef DEBUG
2665 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2666 panic("regrant Recovery problem");
2667#endif
2668
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002669 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002670
2671 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 if (XLOG_FORCED_SHUTDOWN(log))
2674 goto error_return;
2675
2676 /* If there are other waiters on the queue then give them a
2677 * chance at logspace before us. Wake up the first waiters,
2678 * if we do not wake up all the waiters then go to sleep waiting
2679 * for more free space, otherwise try to get some space for
2680 * this transaction.
2681 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002682 need_bytes = tic->t_unit_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if ((ntic = log->l_write_headq)) {
2684 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2685 log->l_grant_write_bytes);
2686 do {
2687 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2688
2689 if (free_bytes < ntic->t_unit_res)
2690 break;
2691 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002692 sv_signal(&ntic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 ntic = ntic->t_next;
2694 } while (ntic != log->l_write_headq);
2695
2696 if (ntic != log->l_write_headq) {
2697 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002698 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002700 trace_xfs_log_regrant_write_sleep1(log, tic);
2701
Dave Chinner9d7fef72009-04-06 18:42:59 +02002702 spin_unlock(&log->l_grant_lock);
2703 xlog_grant_push_ail(log->l_mp, need_bytes);
2704 spin_lock(&log->l_grant_lock);
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002707 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 &log->l_grant_lock, s);
2709
2710 /* If we're shutting down, this tic is already
2711 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002712 spin_lock(&log->l_grant_lock);
2713 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002716 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718 }
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720redo:
2721 if (XLOG_FORCED_SHUTDOWN(log))
2722 goto error_return;
2723
2724 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2725 log->l_grant_write_bytes);
2726 if (free_bytes < need_bytes) {
2727 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002728 xlog_ins_ticketq(&log->l_write_headq, tic);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002729 spin_unlock(&log->l_grant_lock);
2730 xlog_grant_push_ail(log->l_mp, need_bytes);
2731 spin_lock(&log->l_grant_lock);
2732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002734 trace_xfs_log_regrant_write_sleep2(log, tic);
2735
David Chinner12017fa2008-08-13 16:34:31 +10002736 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002739 spin_lock(&log->l_grant_lock);
2740 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002743 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 goto redo;
2745 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002746 xlog_del_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002748 /* we've got enough space */
2749 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750#ifdef DEBUG
2751 tail_lsn = log->l_tail_lsn;
2752 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2753 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2754 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2755 }
2756#endif
2757
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002758 trace_xfs_log_regrant_write_exit(log, tic);
2759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002761 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764
2765 error_return:
2766 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002767 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002768
2769 trace_xfs_log_regrant_write_error(log, tic);
2770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 /*
2772 * If we are failing, make sure the ticket doesn't have any
2773 * current reservations. We don't want to add this back when
2774 * the ticket/transaction gets cancelled.
2775 */
2776 tic->t_curr_res = 0;
2777 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002778 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 return XFS_ERROR(EIO);
2780} /* xlog_regrant_write_log_space */
2781
2782
2783/* The first cnt-1 times through here we don't need to
2784 * move the grant write head because the permanent
2785 * reservation has reserved cnt times the unit amount.
2786 * Release part of current permanent unit reservation and
2787 * reset current reservation to be one units worth. Also
2788 * move grant reservation head forward.
2789 */
2790STATIC void
2791xlog_regrant_reserve_log_space(xlog_t *log,
2792 xlog_ticket_t *ticket)
2793{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002794 trace_xfs_log_regrant_reserve_enter(log, ticket);
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 if (ticket->t_cnt > 0)
2797 ticket->t_cnt--;
2798
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002799 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002800 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002802 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002803
2804 trace_xfs_log_regrant_reserve_sub(log, ticket);
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 xlog_verify_grant_head(log, 1);
2807
2808 /* just return if we still have some of the pre-reserved space */
2809 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002810 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 return;
2812 }
2813
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002814 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002815
2816 trace_xfs_log_regrant_reserve_exit(log, ticket);
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002819 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002821 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822} /* xlog_regrant_reserve_log_space */
2823
2824
2825/*
2826 * Give back the space left from a reservation.
2827 *
2828 * All the information we need to make a correct determination of space left
2829 * is present. For non-permanent reservations, things are quite easy. The
2830 * count should have been decremented to zero. We only need to deal with the
2831 * space remaining in the current reservation part of the ticket. If the
2832 * ticket contains a permanent reservation, there may be left over space which
2833 * needs to be released. A count of N means that N-1 refills of the current
2834 * reservation can be done before we need to ask for more space. The first
2835 * one goes to fill up the first current reservation. Once we run out of
2836 * space, the count will stay at zero and the only space remaining will be
2837 * in the current reservation field.
2838 */
2839STATIC void
2840xlog_ungrant_log_space(xlog_t *log,
2841 xlog_ticket_t *ticket)
2842{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 if (ticket->t_cnt > 0)
2844 ticket->t_cnt--;
2845
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002846 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002847 trace_xfs_log_ungrant_enter(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002849 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002851 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853 /* If this is a permanent reservation ticket, we may be able to free
2854 * up more space based on the remaining count.
2855 */
2856 if (ticket->t_cnt > 0) {
2857 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002858 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002861 trace_xfs_log_ungrant_exit(log, ticket);
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002864 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 xfs_log_move_tail(log->l_mp, 1);
2866} /* xlog_ungrant_log_space */
2867
2868
2869/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 * Flush iclog to disk if this is the last reference to the given iclog and
2871 * the WANT_SYNC bit is set.
2872 *
2873 * When this function is entered, the iclog is not necessarily in the
2874 * WANT_SYNC state. It may be sitting around waiting to get filled.
2875 *
2876 *
2877 */
David Chinnera8272ce2007-11-23 16:28:09 +11002878STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002879xlog_state_release_iclog(
2880 xlog_t *log,
2881 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 int sync = 0; /* do we sync? */
2884
David Chinner155cc6b2008-03-06 13:44:14 +11002885 if (iclog->ic_state & XLOG_STATE_IOERROR)
2886 return XFS_ERROR(EIO);
2887
2888 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2889 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2890 return 0;
2891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002893 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 return XFS_ERROR(EIO);
2895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2897 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2898
David Chinner155cc6b2008-03-06 13:44:14 +11002899 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002900 /* update tail before writing to iclog */
2901 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 sync++;
2903 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002904 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2906 /* cycle incremented when incrementing curr_block */
2907 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002908 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 /*
2911 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002912 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2914 * this iclog has consistent data, so we ignore IOERROR
2915 * flags after this point.
2916 */
David Chinnerb5893342008-03-06 13:44:06 +11002917 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920} /* xlog_state_release_iclog */
2921
2922
2923/*
2924 * This routine will mark the current iclog in the ring as WANT_SYNC
2925 * and move the current iclog pointer to the next iclog in the ring.
2926 * When this routine is called from xlog_state_get_iclog_space(), the
2927 * exact size of the iclog has not yet been determined. All we know is
2928 * that every data block. We have run out of space in this log record.
2929 */
2930STATIC void
2931xlog_state_switch_iclogs(xlog_t *log,
2932 xlog_in_core_t *iclog,
2933 int eventual_size)
2934{
2935 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2936 if (!eventual_size)
2937 eventual_size = iclog->ic_offset;
2938 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002939 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 log->l_prev_block = log->l_curr_block;
2941 log->l_prev_cycle = log->l_curr_cycle;
2942
2943 /* roll log?: ic_offset changed later */
2944 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2945
2946 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002947 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 log->l_mp->m_sb.sb_logsunit > 1) {
2949 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2950 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2951 }
2952
2953 if (log->l_curr_block >= log->l_logBBsize) {
2954 log->l_curr_cycle++;
2955 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2956 log->l_curr_cycle++;
2957 log->l_curr_block -= log->l_logBBsize;
2958 ASSERT(log->l_curr_block >= 0);
2959 }
2960 ASSERT(iclog == log->l_iclog);
2961 log->l_iclog = iclog->ic_next;
2962} /* xlog_state_switch_iclogs */
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964/*
2965 * Write out all data in the in-core log as of this exact moment in time.
2966 *
2967 * Data may be written to the in-core log during this call. However,
2968 * we don't guarantee this data will be written out. A change from past
2969 * implementation means this routine will *not* write out zero length LRs.
2970 *
2971 * Basically, we try and perform an intelligent scan of the in-core logs.
2972 * If we determine there is no flushable data, we just return. There is no
2973 * flushable data if:
2974 *
2975 * 1. the current iclog is active and has no data; the previous iclog
2976 * is in the active or dirty state.
2977 * 2. the current iclog is drity, and the previous iclog is in the
2978 * active or dirty state.
2979 *
David Chinner12017fa2008-08-13 16:34:31 +10002980 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 *
2982 * 1. the current iclog is not in the active nor dirty state.
2983 * 2. the current iclog dirty, and the previous iclog is not in the
2984 * active nor dirty state.
2985 * 3. the current iclog is active, and there is another thread writing
2986 * to this particular iclog.
2987 * 4. a) the current iclog is active and has no other writers
2988 * b) when we return from flushing out this iclog, it is still
2989 * not in the active nor dirty state.
2990 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002991int
2992_xfs_log_force(
2993 struct xfs_mount *mp,
2994 uint flags,
2995 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002997 struct log *log = mp->m_log;
2998 struct xlog_in_core *iclog;
2999 xfs_lsn_t lsn;
3000
3001 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003003 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
3005 iclog = log->l_iclog;
3006 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003007 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 return XFS_ERROR(EIO);
3009 }
3010
3011 /* If the head iclog is not active nor dirty, we just attach
3012 * ourselves to the head and go to sleep.
3013 */
3014 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3015 iclog->ic_state == XLOG_STATE_DIRTY) {
3016 /*
3017 * If the head is dirty or (active and empty), then
3018 * we need to look at the previous iclog. If the previous
3019 * iclog is active or dirty we are done. There is nothing
3020 * to sync out. Otherwise, we attach ourselves to the
3021 * previous iclog and go to sleep.
3022 */
3023 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11003024 (atomic_read(&iclog->ic_refcnt) == 0
3025 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 iclog = iclog->ic_prev;
3027 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3028 iclog->ic_state == XLOG_STATE_DIRTY)
3029 goto no_sleep;
3030 else
3031 goto maybe_sleep;
3032 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003033 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 /* We are the only one with access to this
3035 * iclog. Flush it out now. There should
3036 * be a roundoff of zero to show that someone
3037 * has already taken care of the roundoff from
3038 * the previous sync.
3039 */
David Chinner155cc6b2008-03-06 13:44:14 +11003040 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003041 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003043 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
3045 if (xlog_state_release_iclog(log, iclog))
3046 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003047
3048 if (log_flushed)
3049 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003050 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003051 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 iclog->ic_state != XLOG_STATE_DIRTY)
3053 goto maybe_sleep;
3054 else
3055 goto no_sleep;
3056 } else {
3057 /* Someone else is writing to this iclog.
3058 * Use its call to flush out the data. However,
3059 * the other thread may not force out this LR,
3060 * so we mark it WANT_SYNC.
3061 */
3062 xlog_state_switch_iclogs(log, iclog, 0);
3063 goto maybe_sleep;
3064 }
3065 }
3066 }
3067
3068 /* By the time we come around again, the iclog could've been filled
3069 * which would give it another lsn. If we have a new lsn, just
3070 * return because the relevant data has been flushed.
3071 */
3072maybe_sleep:
3073 if (flags & XFS_LOG_SYNC) {
3074 /*
3075 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003076 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 * Then we check again after waking up, in case our
3078 * sleep was disturbed by a bad news.
3079 */
3080 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003081 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return XFS_ERROR(EIO);
3083 }
3084 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003085 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 /*
3087 * No need to grab the log lock here since we're
3088 * only deciding whether or not to return EIO
3089 * and the memory read should be atomic.
3090 */
3091 if (iclog->ic_state & XLOG_STATE_IOERROR)
3092 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003093 if (log_flushed)
3094 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 } else {
3096
3097no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003098 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 }
3100 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003101}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003104 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3105 * about errors or whether the log was flushed or not. This is the normal
3106 * interface to use when trying to unpin items or move the log forward.
3107 */
3108void
3109xfs_log_force(
3110 xfs_mount_t *mp,
3111 uint flags)
3112{
3113 int error;
3114
3115 error = _xfs_log_force(mp, flags, NULL);
3116 if (error) {
3117 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3118 "error %d returned.", error);
3119 }
3120}
3121
3122/*
3123 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 *
3125 * Find in-core log with lsn.
3126 * If it is in the DIRTY state, just return.
3127 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3128 * state and go to sleep or return.
3129 * If it is in any other state, go to sleep or return.
3130 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003131 * Synchronous forces are implemented with a signal variable. All callers
3132 * to force a given lsn to disk will wait on a the sv attached to the
3133 * specific in-core log. When given in-core log finally completes its
3134 * write to disk, that thread will wake up all threads waiting on the
3135 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003137int
3138_xfs_log_force_lsn(
3139 struct xfs_mount *mp,
3140 xfs_lsn_t lsn,
3141 uint flags,
3142 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003144 struct log *log = mp->m_log;
3145 struct xlog_in_core *iclog;
3146 int already_slept = 0;
3147
3148 ASSERT(lsn != 0);
3149
3150 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003153 spin_lock(&log->l_icloglock);
3154 iclog = log->l_iclog;
3155 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003156 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003157 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 }
3159
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003160 do {
3161 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3162 iclog = iclog->ic_next;
3163 continue;
3164 }
3165
3166 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3167 spin_unlock(&log->l_icloglock);
3168 return 0;
3169 }
3170
3171 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3172 /*
3173 * We sleep here if we haven't already slept (e.g.
3174 * this is the first time we've looked at the correct
3175 * iclog buf) and the buffer before us is going to
3176 * be sync'ed. The reason for this is that if we
3177 * are doing sync transactions here, by waiting for
3178 * the previous I/O to complete, we can allow a few
3179 * more transactions into this iclog before we close
3180 * it down.
3181 *
3182 * Otherwise, we mark the buffer WANT_SYNC, and bump
3183 * up the refcnt so we can release the log (which
3184 * drops the ref count). The state switch keeps new
3185 * transaction commits from using this buffer. When
3186 * the current commits finish writing into the buffer,
3187 * the refcount will drop to zero and the buffer will
3188 * go out then.
3189 */
3190 if (!already_slept &&
3191 (iclog->ic_prev->ic_state &
3192 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3193 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3194
3195 XFS_STATS_INC(xs_log_force_sleep);
3196
3197 sv_wait(&iclog->ic_prev->ic_write_wait,
3198 PSWP, &log->l_icloglock, s);
3199 if (log_flushed)
3200 *log_flushed = 1;
3201 already_slept = 1;
3202 goto try_again;
3203 }
David Chinner155cc6b2008-03-06 13:44:14 +11003204 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003206 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 if (xlog_state_release_iclog(log, iclog))
3208 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003209 if (log_flushed)
3210 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003211 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003214 if ((flags & XFS_LOG_SYNC) && /* sleep */
3215 !(iclog->ic_state &
3216 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3217 /*
3218 * Don't wait on completion if we know that we've
3219 * gotten a log write error.
3220 */
3221 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3222 spin_unlock(&log->l_icloglock);
3223 return XFS_ERROR(EIO);
3224 }
3225 XFS_STATS_INC(xs_log_force_sleep);
3226 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3227 /*
3228 * No need to grab the log lock here since we're
3229 * only deciding whether or not to return EIO
3230 * and the memory read should be atomic.
3231 */
3232 if (iclog->ic_state & XLOG_STATE_IOERROR)
3233 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003235 if (log_flushed)
3236 *log_flushed = 1;
3237 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003238 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003240
3241 return 0;
3242 } while (iclog != log->l_iclog);
3243
3244 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003248/*
3249 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3250 * about errors or whether the log was flushed or not. This is the normal
3251 * interface to use when trying to unpin items or move the log forward.
3252 */
3253void
3254xfs_log_force_lsn(
3255 xfs_mount_t *mp,
3256 xfs_lsn_t lsn,
3257 uint flags)
3258{
3259 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003261 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3262 if (error) {
3263 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3264 "error %d returned.", error);
3265 }
3266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268/*
3269 * Called when we want to mark the current iclog as being ready to sync to
3270 * disk.
3271 */
David Chinnera8272ce2007-11-23 16:28:09 +11003272STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3274{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003275 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
3277 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3278 xlog_state_switch_iclogs(log, iclog, 0);
3279 } else {
3280 ASSERT(iclog->ic_state &
3281 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3282 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
3285
3286/*****************************************************************************
3287 *
3288 * TICKET functions
3289 *
3290 *****************************************************************************
3291 */
3292
3293/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003294 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003296void
3297xfs_log_ticket_put(
3298 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003300 ASSERT(atomic_read(&ticket->t_ref) > 0);
3301 if (atomic_dec_and_test(&ticket->t_ref)) {
3302 sv_destroy(&ticket->t_wait);
3303 kmem_zone_free(xfs_log_ticket_zone, ticket);
3304 }
3305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003307xlog_ticket_t *
3308xfs_log_ticket_get(
3309 xlog_ticket_t *ticket)
3310{
3311 ASSERT(atomic_read(&ticket->t_ref) > 0);
3312 atomic_inc(&ticket->t_ref);
3313 return ticket;
3314}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
3316/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003317 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 */
David Chinnera8272ce2007-11-23 16:28:09 +11003319STATIC xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003320xlog_ticket_alloc(
3321 struct log *log,
3322 int unit_bytes,
3323 int cnt,
3324 char client,
3325 uint xflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003327 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003329 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
David Chinnereb01c9c2008-04-10 12:18:46 +10003331 tic = kmem_zone_zalloc(xfs_log_ticket_zone, KM_SLEEP|KM_MAYFAIL);
3332 if (!tic)
3333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 /*
3336 * Permanent reservations have up to 'cnt'-1 active log operations
3337 * in the log. A unit in this case is the amount of space for one
3338 * of these log operations. Normal reservations have a cnt of 1
3339 * and their unit amount is the total amount of space required.
3340 *
3341 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003342 * which occupy space in the on-disk log.
3343 *
3344 * Normal form of a transaction is:
3345 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3346 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3347 *
3348 * We need to account for all the leadup data and trailer data
3349 * around the transaction data.
3350 * And then we need to account for the worst case in terms of using
3351 * more space.
3352 * The worst case will happen if:
3353 * - the placement of the transaction happens to be such that the
3354 * roundoff is at its maximum
3355 * - the transaction data is synced before the commit record is synced
3356 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3357 * Therefore the commit record is in its own Log Record.
3358 * This can happen as the commit record is called with its
3359 * own region to xlog_write().
3360 * This then means that in the worst case, roundoff can happen for
3361 * the commit-rec as well.
3362 * The commit-rec is smaller than padding in this scenario and so it is
3363 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 */
3365
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003366 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003368 unit_bytes += sizeof(xfs_trans_header_t);
3369
3370 /* for start-rec */
3371 unit_bytes += sizeof(xlog_op_header_t);
3372
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003373 /*
3374 * for LR headers - the space for data in an iclog is the size minus
3375 * the space used for the headers. If we use the iclog size, then we
3376 * undercalculate the number of headers required.
3377 *
3378 * Furthermore - the addition of op headers for split-recs might
3379 * increase the space required enough to require more log and op
3380 * headers, so take that into account too.
3381 *
3382 * IMPORTANT: This reservation makes the assumption that if this
3383 * transaction is the first in an iclog and hence has the LR headers
3384 * accounted to it, then the remaining space in the iclog is
3385 * exclusively for this transaction. i.e. if the transaction is larger
3386 * than the iclog, it will be the only thing in that iclog.
3387 * Fundamentally, this means we must pass the entire log vector to
3388 * xlog_write to guarantee this.
3389 */
3390 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3391 num_headers = howmany(unit_bytes, iclog_space);
3392
3393 /* for split-recs - ophdrs added when data split over LRs */
3394 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3395
3396 /* add extra header reservations if we overrun */
3397 while (!num_headers ||
3398 howmany(unit_bytes, iclog_space) > num_headers) {
3399 unit_bytes += sizeof(xlog_op_header_t);
3400 num_headers++;
3401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 unit_bytes += log->l_iclog_hsize * num_headers;
3403
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003404 /* for commit-rec LR header - note: padding will subsume the ophdr */
3405 unit_bytes += log->l_iclog_hsize;
3406
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003407 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003408 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003409 log->l_mp->m_sb.sb_logsunit > 1) {
3410 /* log su roundoff */
3411 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3412 } else {
3413 /* BB roundoff */
3414 unit_bytes += 2*BBSIZE;
3415 }
3416
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003417 atomic_set(&tic->t_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 tic->t_unit_res = unit_bytes;
3419 tic->t_curr_res = unit_bytes;
3420 tic->t_cnt = cnt;
3421 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003422 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 tic->t_clientid = client;
3424 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003425 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 if (xflags & XFS_LOG_PERM_RESERV)
3427 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003428 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Christoph Hellwig0adba532007-08-30 17:21:46 +10003430 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435
3436/******************************************************************************
3437 *
3438 * Log debug routines
3439 *
3440 ******************************************************************************
3441 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003442#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443/*
3444 * Make sure that the destination ptr is within the valid data region of
3445 * one of the iclogs. This uses backup pointers stored in a different
3446 * part of the log in case we trash the log structure.
3447 */
3448void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003449xlog_verify_dest_ptr(
3450 struct log *log,
3451 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
3453 int i;
3454 int good_ptr = 0;
3455
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003456 for (i = 0; i < log->l_iclog_bufs; i++) {
3457 if (ptr >= log->l_iclog_bak[i] &&
3458 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 good_ptr++;
3460 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003461
3462 if (!good_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003464}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466STATIC void
3467xlog_verify_grant_head(xlog_t *log, int equals)
3468{
3469 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3470 if (equals)
3471 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3472 else
3473 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3474 } else {
3475 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3476 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3477 }
3478} /* xlog_verify_grant_head */
3479
3480/* check if it will fit */
3481STATIC void
3482xlog_verify_tail_lsn(xlog_t *log,
3483 xlog_in_core_t *iclog,
3484 xfs_lsn_t tail_lsn)
3485{
3486 int blocks;
3487
3488 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3489 blocks =
3490 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3491 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3492 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3493 } else {
3494 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3495
3496 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3497 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3498
3499 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3500 if (blocks < BTOBB(iclog->ic_offset) + 1)
3501 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3502 }
3503} /* xlog_verify_tail_lsn */
3504
3505/*
3506 * Perform a number of checks on the iclog before writing to disk.
3507 *
3508 * 1. Make sure the iclogs are still circular
3509 * 2. Make sure we have a good magic number
3510 * 3. Make sure we don't have magic numbers in the data
3511 * 4. Check fields of each log operation header for:
3512 * A. Valid client identifier
3513 * B. tid ptr value falls in valid ptr space (user space code)
3514 * C. Length in log record header is correct according to the
3515 * individual operation headers within record.
3516 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3517 * log, check the preceding blocks of the physical log to make sure all
3518 * the cycle numbers agree with the current cycle number.
3519 */
3520STATIC void
3521xlog_verify_iclog(xlog_t *log,
3522 xlog_in_core_t *iclog,
3523 int count,
3524 boolean_t syncing)
3525{
3526 xlog_op_header_t *ophead;
3527 xlog_in_core_t *icptr;
3528 xlog_in_core_2_t *xhdr;
3529 xfs_caddr_t ptr;
3530 xfs_caddr_t base_ptr;
3531 __psint_t field_offset;
3532 __uint8_t clientid;
3533 int len, i, j, k, op_len;
3534 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003537 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 icptr = log->l_iclog;
3539 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003540 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 xlog_panic("xlog_verify_iclog: invalid ptr");
3542 icptr = icptr->ic_next;
3543 }
3544 if (icptr != log->l_iclog)
3545 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003546 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003549 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 xlog_panic("xlog_verify_iclog: invalid magic num");
3551
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003552 ptr = (xfs_caddr_t) &iclog->ic_header;
3553 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003555 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 xlog_panic("xlog_verify_iclog: unexpected magic num");
3557 }
3558
3559 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003560 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 ptr = iclog->ic_datap;
3562 base_ptr = ptr;
3563 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003564 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 for (i = 0; i < len; i++) {
3566 ophead = (xlog_op_header_t *)ptr;
3567
3568 /* clientid is only 1 byte */
3569 field_offset = (__psint_t)
3570 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3571 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3572 clientid = ophead->oh_clientid;
3573 } else {
3574 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3575 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3576 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3577 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003578 clientid = xlog_get_client_id(
3579 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003581 clientid = xlog_get_client_id(
3582 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 }
3584 }
3585 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003586 cmn_err(CE_WARN, "xlog_verify_iclog: "
3587 "invalid clientid %d op 0x%p offset 0x%lx",
3588 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
3590 /* check length */
3591 field_offset = (__psint_t)
3592 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3593 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003594 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 } else {
3596 idx = BTOBBT((__psint_t)&ophead->oh_len -
3597 (__psint_t)iclog->ic_datap);
3598 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3599 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3600 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003601 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003603 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 }
3605 }
3606 ptr += sizeof(xlog_op_header_t) + op_len;
3607 }
3608} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003609#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003612 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 */
3614STATIC int
3615xlog_state_ioerror(
3616 xlog_t *log)
3617{
3618 xlog_in_core_t *iclog, *ic;
3619
3620 iclog = log->l_iclog;
3621 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3622 /*
3623 * Mark all the incore logs IOERROR.
3624 * From now on, no log flushes will result.
3625 */
3626 ic = iclog;
3627 do {
3628 ic->ic_state = XLOG_STATE_IOERROR;
3629 ic = ic->ic_next;
3630 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 }
3633 /*
3634 * Return non-zero, if state transition has already happened.
3635 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003636 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
3639/*
3640 * This is called from xfs_force_shutdown, when we're forcibly
3641 * shutting down the filesystem, typically because of an IO error.
3642 * Our main objectives here are to make sure that:
3643 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3644 * parties to find out, 'atomically'.
3645 * b. those who're sleeping on log reservations, pinned objects and
3646 * other resources get woken up, and be told the bad news.
3647 * c. nothing new gets queued up after (a) and (b) are done.
3648 * d. if !logerror, flush the iclogs to disk, then seal them off
3649 * for business.
3650 */
3651int
3652xfs_log_force_umount(
3653 struct xfs_mount *mp,
3654 int logerror)
3655{
3656 xlog_ticket_t *tic;
3657 xlog_t *log;
3658 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 log = mp->m_log;
3661
3662 /*
3663 * If this happens during log recovery, don't worry about
3664 * locking; the log isn't open for business yet.
3665 */
3666 if (!log ||
3667 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3668 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003669 if (mp->m_sb_bp)
3670 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 }
3673
3674 /*
3675 * Somebody could've already done the hard work for us.
3676 * No need to get locks for this.
3677 */
3678 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3679 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003680 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 }
3682 retval = 0;
3683 /*
3684 * We must hold both the GRANT lock and the LOG lock,
3685 * before we mark the filesystem SHUTDOWN and wake
3686 * everybody up to tell the bad news.
3687 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003688 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003689 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003691 if (mp->m_sb_bp)
3692 XFS_BUF_DONE(mp->m_sb_bp);
3693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 /*
3695 * This flag is sort of redundant because of the mount flag, but
3696 * it's good to maintain the separation between the log and the rest
3697 * of XFS.
3698 */
3699 log->l_flags |= XLOG_IO_ERROR;
3700
3701 /*
3702 * If we hit a log error, we want to mark all the iclogs IOERROR
3703 * while we're still holding the loglock.
3704 */
3705 if (logerror)
3706 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003707 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709 /*
3710 * We don't want anybody waiting for log reservations
3711 * after this. That means we have to wake up everybody
3712 * queued up on reserve_headq as well as write_headq.
3713 * In addition, we make sure in xlog_{re}grant_log_space
3714 * that we don't enqueue anything once the SHUTDOWN flag
3715 * is set, and this action is protected by the GRANTLOCK.
3716 */
3717 if ((tic = log->l_reserve_headq)) {
3718 do {
David Chinner12017fa2008-08-13 16:34:31 +10003719 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 tic = tic->t_next;
3721 } while (tic != log->l_reserve_headq);
3722 }
3723
3724 if ((tic = log->l_write_headq)) {
3725 do {
David Chinner12017fa2008-08-13 16:34:31 +10003726 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 tic = tic->t_next;
3728 } while (tic != log->l_write_headq);
3729 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003730 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003732 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 ASSERT(!logerror);
3734 /*
3735 * Force the incore logs to disk before shutting the
3736 * log down completely.
3737 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003738 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3739
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003740 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003742 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
3744 /*
3745 * Wake up everybody waiting on xfs_log_force.
3746 * Callback all log item committed functions as if the
3747 * log writes were completed.
3748 */
3749 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3750
3751#ifdef XFSERRORDEBUG
3752 {
3753 xlog_in_core_t *iclog;
3754
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003755 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 iclog = log->l_iclog;
3757 do {
3758 ASSERT(iclog->ic_callback == 0);
3759 iclog = iclog->ic_next;
3760 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003761 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 }
3763#endif
3764 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003765 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766}
3767
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003768STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769xlog_iclogs_empty(xlog_t *log)
3770{
3771 xlog_in_core_t *iclog;
3772
3773 iclog = log->l_iclog;
3774 do {
3775 /* endianness does not matter here, zero is zero in
3776 * any language.
3777 */
3778 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 iclog = iclog->ic_next;
3781 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003782 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783}