blob: 6bba8b4b859622e671e0d33cf5cdcac68f9deb92 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
28#include "xfs_error.h"
29#include "xfs_log_priv.h"
30#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_log_recover.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_trans_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_rw.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
David Chinnereb01c9c2008-04-10 12:18:46 +100041kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* Local miscellaneous function prototypes */
Dave Chinner55b66332010-03-23 11:43:17 +110044STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 xlog_in_core_t **, xfs_lsn_t *);
46STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
47 xfs_buftarg_t *log_target,
48 xfs_daddr_t blk_offset,
49 int num_bblks);
Dave Chinnera69ed032010-12-21 12:08:20 +110050STATIC int xlog_space_left(struct log *log, int64_t *head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
Nathan Scottc41564b2006-03-29 08:55:14 +100052STATIC void xlog_dealloc_log(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* local state machine functions */
55STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
56STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
57STATIC int xlog_state_get_iclog_space(xlog_t *log,
58 int len,
59 xlog_in_core_t **iclog,
60 xlog_ticket_t *ticket,
61 int *continued_write,
62 int *logoffsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063STATIC int xlog_state_release_iclog(xlog_t *log,
64 xlog_in_core_t *iclog);
65STATIC void xlog_state_switch_iclogs(xlog_t *log,
66 xlog_in_core_t *iclog,
67 int eventual_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
69
70/* local functions to manipulate grant head */
71STATIC int xlog_grant_log_space(xlog_t *log,
72 xlog_ticket_t *xtic);
73STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
74 int need_bytes);
75STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
76 xlog_ticket_t *ticket);
77STATIC int xlog_regrant_write_log_space(xlog_t *log,
78 xlog_ticket_t *ticket);
79STATIC void xlog_ungrant_log_space(xlog_t *log,
80 xlog_ticket_t *ticket);
81
Nathan Scottcfcbbbd2005-11-02 15:12:04 +110082#if defined(DEBUG)
Christoph Hellwige6b1f272010-03-23 11:47:38 +110083STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
Dave Chinner3f336c62010-12-21 12:02:52 +110085STATIC void xlog_verify_grant_tail(struct log *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
87 int count, boolean_t syncing);
88STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
89 xfs_lsn_t tail_lsn);
90#else
91#define xlog_verify_dest_ptr(a,b)
92#define xlog_verify_grant_head(a,b)
Dave Chinner3f336c62010-12-21 12:02:52 +110093#define xlog_verify_grant_tail(a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define xlog_verify_iclog(a,b,c,d)
95#define xlog_verify_tail_lsn(a,b,c)
96#endif
97
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100098STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100100static void
Dave Chinner663e4962010-12-21 12:06:05 +1100101xlog_grant_sub_space(
102 struct log *log,
Dave Chinnera69ed032010-12-21 12:08:20 +1100103 int64_t *head,
Dave Chinner663e4962010-12-21 12:06:05 +1100104 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100105{
Dave Chinnera69ed032010-12-21 12:08:20 +1100106 int cycle, space;
107
108 xlog_crack_grant_head(head, &cycle, &space);
109
110 space -= bytes;
111 if (space < 0) {
112 space += log->l_logsize;
113 cycle--;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100114 }
Dave Chinnera69ed032010-12-21 12:08:20 +1100115
116 xlog_assign_grant_head(head, cycle, space);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100117}
118
119static void
Dave Chinner663e4962010-12-21 12:06:05 +1100120xlog_grant_add_space(
121 struct log *log,
Dave Chinnera69ed032010-12-21 12:08:20 +1100122 int64_t *head,
Dave Chinner663e4962010-12-21 12:06:05 +1100123 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100124{
Dave Chinnera69ed032010-12-21 12:08:20 +1100125 int tmp;
126 int cycle, space;
127
128 xlog_crack_grant_head(head, &cycle, &space);
129
130 tmp = log->l_logsize - space;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000131 if (tmp > bytes)
Dave Chinnera69ed032010-12-21 12:08:20 +1100132 space += bytes;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000133 else {
Dave Chinnera69ed032010-12-21 12:08:20 +1100134 space = bytes - tmp;
135 cycle++;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100136 }
Dave Chinnera69ed032010-12-21 12:08:20 +1100137
138 xlog_assign_grant_head(head, cycle, space);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100139}
Dave Chinnera69ed032010-12-21 12:08:20 +1100140
Christoph Hellwig0adba532007-08-30 17:21:46 +1000141static void
142xlog_tic_reset_res(xlog_ticket_t *tic)
143{
144 tic->t_res_num = 0;
145 tic->t_res_arr_sum = 0;
146 tic->t_res_num_ophdrs = 0;
147}
148
149static void
150xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
151{
152 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
153 /* add to overflow and start again */
154 tic->t_res_o_flow += tic->t_res_arr_sum;
155 tic->t_res_num = 0;
156 tic->t_res_arr_sum = 0;
157 }
158
159 tic->t_res_arr[tic->t_res_num].r_len = len;
160 tic->t_res_arr[tic->t_res_num].r_type = type;
161 tic->t_res_arr_sum += len;
162 tic->t_res_num++;
163}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
166 * NOTES:
167 *
168 * 1. currblock field gets updated at startup and after in-core logs
169 * marked as with WANT_SYNC.
170 */
171
172/*
173 * This routine is called when a user of a log manager ticket is done with
174 * the reservation. If the ticket was ever used, then a commit record for
175 * the associated transaction is written out as a log operation header with
176 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
177 * a given ticket. If the ticket was one with a permanent reservation, then
178 * a few operations are done differently. Permanent reservation tickets by
179 * default don't release the reservation. They just commit the current
180 * transaction with the belief that the reservation is still needed. A flag
181 * must be passed in before permanent reservations are actually released.
182 * When these type of tickets are not released, they need to be set into
183 * the inited state again. By doing this, a start record will be written
184 * out when the next write occurs.
185 */
186xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000187xfs_log_done(
188 struct xfs_mount *mp,
189 struct xlog_ticket *ticket,
190 struct xlog_in_core **iclog,
191 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000193 struct log *log = mp->m_log;
194 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (XLOG_FORCED_SHUTDOWN(log) ||
197 /*
198 * If nothing was ever written, don't write out commit record.
199 * If we get an error, just continue and give back the log ticket.
200 */
201 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100202 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 lsn = (xfs_lsn_t) -1;
204 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
205 flags |= XFS_LOG_REL_PERM_RESERV;
206 }
207 }
208
209
210 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
211 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000212 trace_xfs_log_done_nonperm(log, ticket);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000215 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * request has been made to release a permanent reservation.
217 */
218 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100219 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000221 trace_xfs_log_done_perm(log, ticket);
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000224 /* If this ticket was a permanent reservation and we aren't
225 * trying to release it, reset the inited flags; so next time
226 * we write, a start record will be written out.
227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000232}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*
235 * Attaches a new iclog I/O completion callback routine during
236 * transaction commit. If the log is in error state, a non-zero
237 * return code is handed back and the caller is responsible for
238 * executing the callback at an appropriate time.
239 */
240int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000241xfs_log_notify(
242 struct xfs_mount *mp,
243 struct xlog_in_core *iclog,
244 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000246 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
David Chinner114d23a2008-04-10 12:18:39 +1000248 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
250 if (!abortflg) {
251 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
252 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
253 cb->cb_next = NULL;
254 *(iclog->ic_callback_tail) = cb;
255 iclog->ic_callback_tail = &(cb->cb_next);
256 }
David Chinner114d23a2008-04-10 12:18:39 +1000257 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000262xfs_log_release_iclog(
263 struct xfs_mount *mp,
264 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000266 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000267 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100268 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270
271 return 0;
272}
273
274/*
275 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
276 * to the reservation.
277 * 2. Potentially, push buffers at tail of log to disk.
278 *
279 * Each reservation is going to reserve extra space for a log record header.
280 * When writes happen to the on-disk log, we don't subtract the length of the
281 * log record header from any reservation. By wasting space in each
282 * reservation, we prevent over allocation problems.
283 */
284int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000285xfs_log_reserve(
286 struct xfs_mount *mp,
287 int unit_bytes,
288 int cnt,
289 struct xlog_ticket **ticket,
290 __uint8_t client,
291 uint flags,
292 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000294 struct log *log = mp->m_log;
295 struct xlog_ticket *internal_ticket;
296 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 if (XLOG_FORCED_SHUTDOWN(log))
301 return XFS_ERROR(EIO);
302
303 XFS_STATS_INC(xs_try_logspace);
304
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (*ticket != NULL) {
307 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000308 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000309
Dave Chinner524ee362010-05-07 11:05:05 +1000310 /*
311 * this is a new transaction on the ticket, so we need to
312 * change the transaction ID so that the next transaction has a
313 * different TID in the log. Just add one to the existing tid
314 * so that we can see chains of rolling transactions in the log
315 * easily.
316 */
317 internal_ticket->t_tid++;
318
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000319 trace_xfs_log_reserve(log, internal_ticket);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
322 retval = xlog_regrant_write_log_space(log, internal_ticket);
323 } else {
324 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100325 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Dave Chinner3383ca52010-05-07 11:04:17 +1000326 client, flags,
327 KM_SLEEP|KM_MAYFAIL);
David Chinnereb01c9c2008-04-10 12:18:46 +1000328 if (!internal_ticket)
329 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000330 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000332
333 trace_xfs_log_reserve(log, internal_ticket);
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 xlog_grant_push_ail(mp,
336 (internal_ticket->t_unit_res *
337 internal_ticket->t_cnt));
338 retval = xlog_grant_log_space(log, internal_ticket);
339 }
340
341 return retval;
342} /* xfs_log_reserve */
343
344
345/*
346 * Mount a log filesystem
347 *
348 * mp - ubiquitous xfs mount point structure
349 * log_target - buftarg of on-disk log device
350 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
351 * num_bblocks - Number of BBSIZE blocks in on-disk log
352 *
353 * Return error or zero.
354 */
355int
David Chinner249a8c12008-02-05 12:13:32 +1100356xfs_log_mount(
357 xfs_mount_t *mp,
358 xfs_buftarg_t *log_target,
359 xfs_daddr_t blk_offset,
360 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
David Chinner249a8c12008-02-05 12:13:32 +1100362 int error;
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
365 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
366 else {
367 cmn_err(CE_NOTE,
368 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
369 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000370 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200374 if (IS_ERR(mp->m_log)) {
375 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100376 goto out;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /*
David Chinner249a8c12008-02-05 12:13:32 +1100380 * Initialize the AIL now we have a log.
381 */
David Chinner249a8c12008-02-05 12:13:32 +1100382 error = xfs_trans_ail_init(mp);
383 if (error) {
384 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100385 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100386 }
David Chinnera9c21c12008-10-30 17:39:35 +1100387 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100388
389 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * skip log recovery on a norecovery mount. pretend it all
391 * just worked.
392 */
393 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100394 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000397 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Eric Sandeen65be6052006-01-11 15:34:19 +1100399 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000402 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (error) {
404 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100405 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 }
408
409 /* Normal transactions can now occur */
410 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
411
Dave Chinner71e330b2010-05-21 14:37:18 +1000412 /*
413 * Now the log has been fully initialised and we know were our
414 * space grant counters are, we can initialise the permanent ticket
415 * needed for delayed logging to work.
416 */
417 xlog_cil_init_post_recovery(mp->m_log);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100420
421out_destroy_ail:
422 xfs_trans_ail_destroy(mp);
423out_free_log:
424 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100425out:
David Chinner249a8c12008-02-05 12:13:32 +1100426 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100427}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429/*
430 * Finish the recovery of the file system. This is separate from
431 * the xfs_log_mount() call, because it depends on the code in
432 * xfs_mountfs() to read in the root and real-time bitmap inodes
433 * between calling xfs_log_mount() and here.
434 *
435 * mp - ubiquitous xfs mount point structure
436 */
437int
Christoph Hellwig42490232008-08-13 16:49:32 +1000438xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 int error;
441
442 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000443 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 else {
445 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000446 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 return error;
450}
451
452/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * Final log writes as part of unmount.
454 *
455 * Mark the filesystem clean as unmount happens. Note that during relocation
456 * this routine needs to be executed as part of source-bag while the
457 * deallocation must not be done until source-end.
458 */
459
460/*
461 * Unmount record used to have a string "Unmount filesystem--" in the
462 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
463 * We just write the magic number now since that particular field isn't
464 * currently architecture converted and "nUmount" is a bit foo.
465 * As far as I know, there weren't any dependencies on the old behaviour.
466 */
467
468int
469xfs_log_unmount_write(xfs_mount_t *mp)
470{
471 xlog_t *log = mp->m_log;
472 xlog_in_core_t *iclog;
473#ifdef DEBUG
474 xlog_in_core_t *first_iclog;
475#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000476 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 xfs_lsn_t lsn;
478 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /*
481 * Don't write out unmount record on read-only mounts.
482 * Or, if we are doing a forced umount (typically because of IO errors).
483 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000484 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return 0;
486
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000487 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000488 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490#ifdef DEBUG
491 first_iclog = iclog = log->l_iclog;
492 do {
493 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
494 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
495 ASSERT(iclog->ic_offset == 0);
496 }
497 iclog = iclog->ic_next;
498 } while (iclog != first_iclog);
499#endif
500 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000501 error = xfs_log_reserve(mp, 600, 1, &tic,
502 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100504 /* the data section must be 32 bit size aligned */
505 struct {
506 __uint16_t magic;
507 __uint16_t pad1;
508 __uint32_t pad2; /* may as well make it 64 bits */
509 } magic = {
510 .magic = XLOG_UNMOUNT_TYPE,
511 };
512 struct xfs_log_iovec reg = {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000513 .i_addr = &magic,
Dave Chinner55b66332010-03-23 11:43:17 +1100514 .i_len = sizeof(magic),
515 .i_type = XLOG_REG_TYPE_UNMOUNT,
516 };
517 struct xfs_log_vec vec = {
518 .lv_niovecs = 1,
519 .lv_iovecp = &reg,
520 };
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* remove inited flag */
Dave Chinner55b66332010-03-23 11:43:17 +1100523 tic->t_flags = 0;
524 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 NULL, XLOG_UNMOUNT_TRANS);
526 /*
527 * At this point, we're umounting anyway,
528 * so there's no point in transitioning log state
529 * to IOERROR. Just continue...
530 */
531 }
532
533 if (error) {
534 xfs_fs_cmn_err(CE_ALERT, mp,
535 "xfs_log_unmount: unmount record failed");
536 }
537
538
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000539 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100541 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100543 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000544 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000546 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
548 iclog->ic_state == XLOG_STATE_DIRTY)) {
549 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000550 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 &log->l_icloglock, s);
552 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000553 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000556 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000558 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000559 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000560 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100561 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 } else {
564 /*
565 * We're already in forced_shutdown mode, couldn't
566 * even attempt to write out the unmount transaction.
567 *
568 * Go through the motions of sync'ing and releasing
569 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000570 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 * be in progress. Do this as a separate section of
572 * code so we'll know if we ever get stuck here that
573 * we're in this odd situation of trying to unmount
574 * a file system that went into forced_shutdown as
575 * the result of an unmount..
576 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000577 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100579 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100582 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000583 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000585 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
588 || iclog->ic_state == XLOG_STATE_DIRTY
589 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
590
David Chinner12017fa2008-08-13 16:34:31 +1000591 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 &log->l_icloglock, s);
593 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000594 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 }
597
David Chinner1bb7d6b2008-04-10 12:24:38 +1000598 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599} /* xfs_log_unmount_write */
600
601/*
602 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100603 *
604 * We need to stop the aild from running before we destroy
605 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
607void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100608xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
David Chinner249a8c12008-02-05 12:13:32 +1100610 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000611 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Dave Chinner43f5efc2010-03-23 10:10:00 +1100614void
615xfs_log_item_init(
616 struct xfs_mount *mp,
617 struct xfs_log_item *item,
618 int type,
619 struct xfs_item_ops *ops)
620{
621 item->li_mountp = mp;
622 item->li_ailp = mp->m_ail;
623 item->li_type = type;
624 item->li_ops = ops;
Dave Chinner71e330b2010-05-21 14:37:18 +1000625 item->li_lv = NULL;
626
627 INIT_LIST_HEAD(&item->li_ail);
628 INIT_LIST_HEAD(&item->li_cil);
Dave Chinner43f5efc2010-03-23 10:10:00 +1100629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/*
632 * Write region vectors to log. The write happens using the space reservation
633 * of the ticket (tic). It is not a requirement that all writes for a given
Dave Chinner9b9fc2b72010-03-23 11:21:11 +1100634 * transaction occur with one call to xfs_log_write(). However, it is important
635 * to note that the transaction reservation code makes an assumption about the
636 * number of log headers a transaction requires that may be violated if you
637 * don't pass all the transaction vectors in one call....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
639int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000640xfs_log_write(
641 struct xfs_mount *mp,
642 struct xfs_log_iovec reg[],
643 int nentries,
644 struct xlog_ticket *tic,
645 xfs_lsn_t *start_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000647 struct log *log = mp->m_log;
648 int error;
Dave Chinner55b66332010-03-23 11:43:17 +1100649 struct xfs_log_vec vec = {
650 .lv_niovecs = nentries,
651 .lv_iovecp = reg,
652 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (XLOG_FORCED_SHUTDOWN(log))
655 return XFS_ERROR(EIO);
656
Dave Chinner55b66332010-03-23 11:43:17 +1100657 error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000658 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +1000659 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100660 return error;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000661}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663void
664xfs_log_move_tail(xfs_mount_t *mp,
665 xfs_lsn_t tail_lsn)
666{
667 xlog_ticket_t *tic;
668 xlog_t *log = mp->m_log;
Dave Chinnera69ed032010-12-21 12:08:20 +1100669 int need_bytes, free_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (XLOG_FORCED_SHUTDOWN(log))
672 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (tail_lsn == 0) {
675 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000676 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000678 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000681 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
684 * tail_lsn.
685 */
686 if (tail_lsn != 1) {
687 log->l_tail_lsn = tail_lsn;
688 }
689
Dave Chinner10547942010-12-21 12:02:25 +1100690 if (!list_empty(&log->l_writeq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#ifdef DEBUG
692 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
693 panic("Recovery problem");
694#endif
Dave Chinnera69ed032010-12-21 12:08:20 +1100695 free_bytes = xlog_space_left(log, &log->l_grant_write_head);
Dave Chinner10547942010-12-21 12:02:25 +1100696 list_for_each_entry(tic, &log->l_writeq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
698
699 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
700 break;
701 tail_lsn = 0;
702 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000703 sv_signal(&tic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +1100704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Dave Chinner10547942010-12-21 12:02:25 +1100706
707 if (!list_empty(&log->l_reserveq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708#ifdef DEBUG
709 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
710 panic("Recovery problem");
711#endif
Dave Chinnera69ed032010-12-21 12:08:20 +1100712 free_bytes = xlog_space_left(log, &log->l_grant_reserve_head);
Dave Chinner10547942010-12-21 12:02:25 +1100713 list_for_each_entry(tic, &log->l_reserveq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
715 need_bytes = tic->t_unit_res*tic->t_cnt;
716 else
717 need_bytes = tic->t_unit_res;
718 if (free_bytes < need_bytes && tail_lsn != 1)
719 break;
720 tail_lsn = 0;
721 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000722 sv_signal(&tic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +1100723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000725 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726} /* xfs_log_move_tail */
727
728/*
729 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000730 * that needs to be covered. To begin the transition to the idle state
731 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
732 * If we are then in a state where covering is needed, the caller is informed
733 * that dummy transactions are required to move the log into the idle state.
734 *
735 * Because this is called as part of the sync process, we should also indicate
736 * that dummy transactions should be issued in anything but the covered or
737 * idle states. This ensures that the log tail is accurately reflected in
738 * the log at the end of the sync, hence if a crash occurrs avoids replay
739 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
741int
742xfs_log_need_covered(xfs_mount_t *mp)
743{
David Chinner27d8d5f2008-10-30 17:38:39 +1100744 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
David Chinner92821e22007-05-24 15:26:31 +1000747 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
749
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000750 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000751 switch (log->l_covered_state) {
752 case XLOG_STATE_COVER_DONE:
753 case XLOG_STATE_COVER_DONE2:
754 case XLOG_STATE_COVER_IDLE:
755 break;
756 case XLOG_STATE_COVER_NEED:
757 case XLOG_STATE_COVER_NEED2:
758 if (!xfs_trans_ail_tail(log->l_ailp) &&
759 xlog_iclogs_empty(log)) {
760 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
761 log->l_covered_state = XLOG_STATE_COVER_DONE;
762 else
763 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000765 /* FALLTHRU */
766 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000768 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000770 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100771 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/******************************************************************************
775 *
776 * local routines
777 *
778 ******************************************************************************
779 */
780
781/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
782 * The log manager must keep track of the last LR which was committed
783 * to disk. The lsn of this LR will become the new tail_lsn whenever
784 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
785 * the situation where stuff could be written into the log but nothing
786 * was ever in the AIL when asked. Eventually, we panic since the
787 * tail hits the head.
788 *
789 * We may be holding the log iclog lock upon entering this routine.
790 */
791xfs_lsn_t
792xlog_assign_tail_lsn(xfs_mount_t *mp)
793{
794 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 xlog_t *log = mp->m_log;
796
David Chinner5b00f142008-10-30 17:39:00 +1100797 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000798 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (tail_lsn != 0) {
800 log->l_tail_lsn = tail_lsn;
801 } else {
802 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
803 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000804 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 return tail_lsn;
807} /* xlog_assign_tail_lsn */
808
809
810/*
811 * Return the space in the log between the tail and the head. The head
812 * is passed in the cycle/bytes formal parms. In the special case where
813 * the reserve head has wrapped passed the tail, this calculation is no
814 * longer valid. In this case, just return 0 which means there is no space
815 * in the log. This works for all places where this function is called
816 * with the reserve head. Of course, if the write head were to ever
817 * wrap the tail, we should blow up. Rather than catch this case here,
818 * we depend on other ASSERTions in other parts of the code. XXXmiken
819 *
820 * This code also handles the case where the reservation head is behind
821 * the tail. The details of this case are described below, but the end
822 * result is that we return the size of the log as the amount of space left.
823 */
David Chinnera8272ce2007-11-23 16:28:09 +1100824STATIC int
Dave Chinnera69ed032010-12-21 12:08:20 +1100825xlog_space_left(
826 struct log *log,
827 int64_t *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Dave Chinnera69ed032010-12-21 12:08:20 +1100829 int free_bytes;
830 int tail_bytes;
831 int tail_cycle;
832 int head_cycle;
833 int head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Dave Chinnera69ed032010-12-21 12:08:20 +1100835 xlog_crack_grant_head(head, &head_cycle, &head_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
837 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
Dave Chinnera69ed032010-12-21 12:08:20 +1100838 if (tail_cycle == head_cycle && head_bytes >= tail_bytes)
839 free_bytes = log->l_logsize - (head_bytes - tail_bytes);
840 else if (tail_cycle + 1 < head_cycle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return 0;
Dave Chinnera69ed032010-12-21 12:08:20 +1100842 else if (tail_cycle < head_cycle) {
843 ASSERT(tail_cycle == (head_cycle - 1));
844 free_bytes = tail_bytes - head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 } else {
846 /*
847 * The reservation head is behind the tail.
848 * In this case we just want to return the size of the
849 * log as the amount of space left.
850 */
851 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
852 "xlog_space_left: head behind tail\n"
853 " tail_cycle = %d, tail_bytes = %d\n"
854 " GH cycle = %d, GH bytes = %d",
Dave Chinnera69ed032010-12-21 12:08:20 +1100855 tail_cycle, tail_bytes, head_cycle, head_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 ASSERT(0);
857 free_bytes = log->l_logsize;
858 }
859 return free_bytes;
Dave Chinnera69ed032010-12-21 12:08:20 +1100860}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862
863/*
864 * Log function which is called when an io completes.
865 *
866 * The log manager needs its own routine, in order to control what
867 * happens with the buffer after the write completes.
868 */
869void
870xlog_iodone(xfs_buf_t *bp)
871{
872 xlog_in_core_t *iclog;
873 xlog_t *l;
874 int aborted;
875
876 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
877 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
878 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
879 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 l = iclog->ic_log;
881
882 /*
883 * Race to shutdown the filesystem if we see an error.
884 */
885 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
886 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
887 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
888 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000889 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /*
891 * This flag will be propagated to the trans-committed
892 * callback routines to let them know that the log-commit
893 * didn't succeed.
894 */
895 aborted = XFS_LI_ABORTED;
896 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
897 aborted = XFS_LI_ABORTED;
898 }
David Chinner3db296f2007-05-14 18:24:16 +1000899
900 /* log I/O is always issued ASYNC */
901 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000903 /*
904 * do not reference the buffer (bp) here as we could race
905 * with it being freed after writing the unmount record to the
906 * log.
907 */
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909} /* xlog_iodone */
910
911/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * Return size of each in-core log record buffer.
913 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200914 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 *
916 * If the filesystem blocksize is too large, we may need to choose a
917 * larger size since the directory code currently logs entire blocks.
918 */
919
920STATIC void
921xlog_get_iclog_buffer_size(xfs_mount_t *mp,
922 xlog_t *log)
923{
924 int size;
925 int xhdrs;
926
Eric Sandeen1cb51252007-08-16 16:24:43 +1000927 if (mp->m_logbufs <= 0)
928 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
929 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100930 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /*
933 * Buffer size passed in from mount system call.
934 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100935 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 size = log->l_iclog_size = mp->m_logbsize;
937 log->l_iclog_size_log = 0;
938 while (size != 1) {
939 log->l_iclog_size_log++;
940 size >>= 1;
941 }
942
Eric Sandeen62118702008-03-06 13:44:28 +1100943 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200944 /* # headers = size / 32k
945 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
947
948 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
949 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
950 xhdrs++;
951 log->l_iclog_hsize = xhdrs << BBSHIFT;
952 log->l_iclog_heads = xhdrs;
953 } else {
954 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
955 log->l_iclog_hsize = BBSIZE;
956 log->l_iclog_heads = 1;
957 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100958 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200961 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +1000962 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
963 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /* the default log size is 16k or 32k which is one header sector */
966 log->l_iclog_hsize = BBSIZE;
967 log->l_iclog_heads = 1;
968
Christoph Hellwig7153f8b2009-02-09 08:36:46 +0100969done:
970 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100971 if (mp->m_logbufs == 0)
972 mp->m_logbufs = log->l_iclog_bufs;
973 if (mp->m_logbsize == 0)
974 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975} /* xlog_get_iclog_buffer_size */
976
977
978/*
979 * This routine initializes some of the log structure for a given mount point.
980 * Its primary purpose is to fill in enough, so recovery can occur. However,
981 * some other stuff may be filled in too.
982 */
983STATIC xlog_t *
984xlog_alloc_log(xfs_mount_t *mp,
985 xfs_buftarg_t *log_target,
986 xfs_daddr_t blk_offset,
987 int num_bblks)
988{
989 xlog_t *log;
990 xlog_rec_header_t *head;
991 xlog_in_core_t **iclogp;
992 xlog_in_core_t *iclog, *prev_iclog=NULL;
993 xfs_buf_t *bp;
994 int i;
Dave Chinnera6cb7672009-04-06 18:39:27 +0200995 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +1000996 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Dave Chinner644c3562008-11-10 16:50:24 +1100998 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200999 if (!log) {
1000 xlog_warn("XFS: Log allocation failed: No memory!");
1001 goto out;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 log->l_mp = mp;
1005 log->l_targ = log_target;
1006 log->l_logsize = BBTOB(num_bblks);
1007 log->l_logBBstart = blk_offset;
1008 log->l_logBBsize = num_bblks;
1009 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1010 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1011
1012 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001013 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1015 log->l_last_sync_lsn = log->l_tail_lsn;
1016 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
Dave Chinnera69ed032010-12-21 12:08:20 +11001017 xlog_assign_grant_head(&log->l_grant_reserve_head, 1, 0);
1018 xlog_assign_grant_head(&log->l_grant_write_head, 1, 0);
Dave Chinner10547942010-12-21 12:02:25 +11001019 INIT_LIST_HEAD(&log->l_reserveq);
1020 INIT_LIST_HEAD(&log->l_writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Dave Chinnera6cb7672009-04-06 18:39:27 +02001022 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001023 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001024 log2_size = mp->m_sb.sb_logsectlog;
1025 if (log2_size < BBSHIFT) {
1026 xlog_warn("XFS: Log sector size too small "
1027 "(0x%x < 0x%x)", log2_size, BBSHIFT);
1028 goto out_free_log;
1029 }
1030
1031 log2_size -= BBSHIFT;
1032 if (log2_size > mp->m_sectbb_log) {
1033 xlog_warn("XFS: Log sector size too large "
1034 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001035 goto out_free_log;
1036 }
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001039 if (log2_size && log->l_logBBstart > 0 &&
1040 !xfs_sb_version_haslogv2(&mp->m_sb)) {
1041
Dave Chinnera6cb7672009-04-06 18:39:27 +02001042 xlog_warn("XFS: log sector size (0x%x) invalid "
Alex Elder69ce58f2010-04-20 17:09:59 +10001043 "for configuration.", log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001044 goto out_free_log;
1045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001047 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 xlog_get_iclog_buffer_size(mp, log);
1050
Dave Chinnera6cb7672009-04-06 18:39:27 +02001051 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001053 if (!bp)
1054 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1057 ASSERT(XFS_BUF_ISBUSY(bp));
1058 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1059 log->l_xbuf = bp;
1060
Eric Sandeen007c61c2007-10-11 17:43:56 +10001061 spin_lock_init(&log->l_icloglock);
1062 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001063 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1066 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1067
1068 iclogp = &log->l_iclog;
1069 /*
1070 * The amount of memory to allocate for the iclog structure is
1071 * rather funky due to the way the structure is defined. It is
1072 * done this way so that we can use different sizes for machines
1073 * with different amounts of memory. See the definition of
1074 * xlog_in_core_t in xfs_log_priv.h for details.
1075 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 ASSERT(log->l_iclog_size >= 4096);
1077 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001078 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1079 if (!*iclogp)
1080 goto out_free_iclog;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 iclog->ic_prev = prev_iclog;
1084 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001085
Dave Chinner686865f2010-09-24 20:07:47 +10001086 bp = xfs_buf_get_uncached(mp->m_logdev_targp,
1087 log->l_iclog_size, 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001088 if (!bp)
1089 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001090 if (!XFS_BUF_CPSEMA(bp))
1091 ASSERT(0);
1092 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001093 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1094 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001095 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001096#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 head = &iclog->ic_header;
1100 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001101 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1102 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001103 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001104 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001106 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1110 iclog->ic_state = XLOG_STATE_ACTIVE;
1111 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001112 atomic_set(&iclog->ic_refcnt, 0);
1113 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001115 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1118 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001119 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1120 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 iclogp = &iclog->ic_next;
1123 }
1124 *iclogp = log->l_iclog; /* complete ring */
1125 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1126
Dave Chinner71e330b2010-05-21 14:37:18 +10001127 error = xlog_cil_init(log);
1128 if (error)
1129 goto out_free_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001131
1132out_free_iclog:
1133 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1134 prev_iclog = iclog->ic_next;
1135 if (iclog->ic_bp) {
1136 sv_destroy(&iclog->ic_force_wait);
1137 sv_destroy(&iclog->ic_write_wait);
1138 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001139 }
1140 kmem_free(iclog);
1141 }
1142 spinlock_destroy(&log->l_icloglock);
1143 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001144 xfs_buf_free(log->l_xbuf);
1145out_free_log:
1146 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001147out:
1148 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149} /* xlog_alloc_log */
1150
1151
1152/*
1153 * Write out the commit record of a transaction associated with the given
1154 * ticket. Return the lsn of the commit record.
1155 */
1156STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001157xlog_commit_record(
1158 struct log *log,
1159 struct xlog_ticket *ticket,
1160 struct xlog_in_core **iclog,
1161 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Dave Chinner55b66332010-03-23 11:43:17 +11001163 struct xfs_mount *mp = log->l_mp;
1164 int error;
1165 struct xfs_log_iovec reg = {
1166 .i_addr = NULL,
1167 .i_len = 0,
1168 .i_type = XLOG_REG_TYPE_COMMIT,
1169 };
1170 struct xfs_log_vec vec = {
1171 .lv_niovecs = 1,
1172 .lv_iovecp = &reg,
1173 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001176 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1177 XLOG_COMMIT_TRANS);
1178 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001179 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001180 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183/*
1184 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1185 * log space. This code pushes on the lsn which would supposedly free up
1186 * the 25% which we want to leave free. We may need to adopt a policy which
1187 * pushes on an lsn which is further along in the log once we reach the high
1188 * water mark. In this manner, we would be creating a low water mark.
1189 */
David Chinnera8272ce2007-11-23 16:28:09 +11001190STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191xlog_grant_push_ail(xfs_mount_t *mp,
1192 int need_bytes)
1193{
1194 xlog_t *log = mp->m_log; /* pointer to the log */
1195 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1196 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1197 int free_blocks; /* free blocks left to write to */
1198 int free_bytes; /* free bytes left to write to */
1199 int threshold_block; /* block in lsn we'd like to be at */
1200 int threshold_cycle; /* lsn cycle we'd like to be at */
1201 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1204
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001205 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11001206 free_bytes = xlog_space_left(log, &log->l_grant_reserve_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 tail_lsn = log->l_tail_lsn;
1208 free_blocks = BTOBBT(free_bytes);
1209
1210 /*
1211 * Set the threshold for the minimum number of free blocks in the
1212 * log to the maximum of what the caller needs, one quarter of the
1213 * log, and 256 blocks.
1214 */
1215 free_threshold = BTOBB(need_bytes);
1216 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1217 free_threshold = MAX(free_threshold, 256);
1218 if (free_blocks < free_threshold) {
1219 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1220 threshold_cycle = CYCLE_LSN(tail_lsn);
1221 if (threshold_block >= log->l_logBBsize) {
1222 threshold_block -= log->l_logBBsize;
1223 threshold_cycle += 1;
1224 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001225 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 /* Don't pass in an lsn greater than the lsn of the last
1228 * log record known to be on disk.
1229 */
1230 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1231 threshold_lsn = log->l_last_sync_lsn;
1232 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001233 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 /*
1236 * Get the transaction layer to kick the dirty buffers out to
1237 * disk asynchronously. No point in trying to do this if
1238 * the filesystem is shutting down.
1239 */
1240 if (threshold_lsn &&
1241 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001242 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243} /* xlog_grant_push_ail */
1244
Christoph Hellwig873ff552010-01-13 22:17:57 +00001245/*
1246 * The bdstrat callback function for log bufs. This gives us a central
1247 * place to trap bufs in case we get hit by a log I/O error and need to
1248 * shutdown. Actually, in practice, even when we didn't get a log error,
1249 * we transition the iclogs to IOERROR state *after* flushing all existing
1250 * iclogs to disk. This is because we don't want anymore new transactions to be
1251 * started or completed afterwards.
1252 */
1253STATIC int
1254xlog_bdstrat(
1255 struct xfs_buf *bp)
1256{
1257 struct xlog_in_core *iclog;
1258
1259 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1260 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1261 XFS_BUF_ERROR(bp, EIO);
1262 XFS_BUF_STALE(bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001263 xfs_buf_ioend(bp, 0);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001264 /*
1265 * It would seem logical to return EIO here, but we rely on
1266 * the log state machine to propagate I/O errors instead of
1267 * doing it here.
1268 */
1269 return 0;
1270 }
1271
1272 bp->b_flags |= _XBF_RUN_QUEUES;
1273 xfs_buf_iorequest(bp);
1274 return 0;
1275}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277/*
1278 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1279 * fashion. Previously, we should have moved the current iclog
1280 * ptr in the log to point to the next available iclog. This allows further
1281 * write to continue while this code syncs out an iclog ready to go.
1282 * Before an in-core log can be written out, the data section must be scanned
1283 * to save away the 1st word of each BBSIZE block into the header. We replace
1284 * it with the current cycle count. Each BBSIZE block is tagged with the
1285 * cycle count because there in an implicit assumption that drives will
1286 * guarantee that entire 512 byte blocks get written at once. In other words,
1287 * we can't have part of a 512 byte block written and part not written. By
1288 * tagging each block, we will know which blocks are valid when recovering
1289 * after an unclean shutdown.
1290 *
1291 * This routine is single threaded on the iclog. No other thread can be in
1292 * this routine with the same iclog. Changing contents of iclog can there-
1293 * fore be done without grabbing the state machine lock. Updating the global
1294 * log will require grabbing the lock though.
1295 *
1296 * The entire log manager uses a logical block numbering scheme. Only
1297 * log_sync (and then only bwrite()) know about the fact that the log may
1298 * not start with block zero on a given device. The log block start offset
1299 * is added immediately before calling bwrite().
1300 */
1301
David Chinnera8272ce2007-11-23 16:28:09 +11001302STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303xlog_sync(xlog_t *log,
1304 xlog_in_core_t *iclog)
1305{
1306 xfs_caddr_t dptr; /* pointer to byte sized element */
1307 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001308 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 uint count; /* byte count of bwrite */
1310 uint count_init; /* initial count before roundup */
1311 int roundoff; /* roundoff to BB or stripe */
1312 int split = 0; /* split write into two regions */
1313 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001314 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001317 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 /* Add for LR header */
1320 count_init = log->l_iclog_hsize + iclog->ic_offset;
1321
1322 /* Round out the log write size */
1323 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1324 /* we have a v2 stripe unit to use */
1325 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1326 } else {
1327 count = BBTOB(BTOBB(count_init));
1328 }
1329 roundoff = count - count_init;
1330 ASSERT(roundoff >= 0);
1331 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1332 roundoff < log->l_mp->m_sb.sb_logsunit)
1333 ||
1334 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1335 roundoff < BBTOB(1)));
1336
1337 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001338 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11001339 xlog_grant_add_space(log, &log->l_grant_reserve_head, roundoff);
1340 xlog_grant_add_space(log, &log->l_grant_write_head, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001341 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /* put cycle number in every block */
1344 xlog_pack_data(log, iclog, roundoff);
1345
1346 /* real byte length */
1347 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001348 iclog->ic_header.h_len =
1349 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001351 iclog->ic_header.h_len =
1352 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354
Nathan Scottf5faad72006-07-28 17:04:44 +10001355 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1357 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001358 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1361
1362 /* Do we need to split this write into 2 parts? */
1363 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1364 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1365 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1366 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1367 } else {
1368 iclog->ic_bwritecnt = 1;
1369 }
David Chinner511105b2007-05-24 15:21:57 +10001370 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001372 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 XFS_BUF_BUSY(bp);
1374 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001375 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwig651701d2010-06-28 10:34:34 -04001376
1377 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001378 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1381 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1382
1383 xlog_verify_iclog(log, iclog, count, B_TRUE);
1384
1385 /* account for log which doesn't start at block #0 */
1386 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1387 /*
1388 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1389 * is shutting down.
1390 */
1391 XFS_BUF_WRITE(bp);
1392
Christoph Hellwig873ff552010-01-13 22:17:57 +00001393 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1395 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001396 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001399 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1401 (unsigned long)1);
1402 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1403 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1404 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1405 (__psint_t)count), split);
1406 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001407 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 XFS_BUF_BUSY(bp);
1409 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001410 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001411 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1412 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 dptr = XFS_BUF_PTR(bp);
1414 /*
1415 * Bump the cycle numbers at the start of each block
1416 * since this part of the buffer is at the start of
1417 * a new cycle. Watch out for the header magic number
1418 * case, though.
1419 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001420 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001421 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001422 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001423 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 dptr += BBSIZE;
1425 }
1426
1427 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1428 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1429
Nathan Scottc41564b2006-03-29 08:55:14 +10001430 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1432 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001433 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1435 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001436 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001439 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440} /* xlog_sync */
1441
1442
1443/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001444 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 */
David Chinnera8272ce2007-11-23 16:28:09 +11001446STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001447xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 int i;
1451
Dave Chinner71e330b2010-05-21 14:37:18 +10001452 xlog_cil_destroy(log);
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 iclog = log->l_iclog;
1455 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001456 sv_destroy(&iclog->ic_force_wait);
1457 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001460 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 iclog = next_iclog;
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 spinlock_destroy(&log->l_icloglock);
1464 spinlock_destroy(&log->l_grant_lock);
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001468 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001469} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471/*
1472 * Update counters atomically now that memcpy is done.
1473 */
1474/* ARGSUSED */
1475static inline void
1476xlog_state_finish_copy(xlog_t *log,
1477 xlog_in_core_t *iclog,
1478 int record_cnt,
1479 int copy_bytes)
1480{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001481 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001483 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 iclog->ic_offset += copy_bytes;
1485
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001486 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487} /* xlog_state_finish_copy */
1488
1489
1490
1491
1492/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001493 * print out info relating to regions written which consume
1494 * the reservation
1495 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001496void
1497xlog_print_tic_res(
1498 struct xfs_mount *mp,
1499 struct xlog_ticket *ticket)
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001500{
1501 uint i;
1502 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1503
1504 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1505 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1506 "bformat",
1507 "bchunk",
1508 "efi_format",
1509 "efd_format",
1510 "iformat",
1511 "icore",
1512 "iext",
1513 "ibroot",
1514 "ilocal",
1515 "iattr_ext",
1516 "iattr_broot",
1517 "iattr_local",
1518 "qformat",
1519 "dquot",
1520 "quotaoff",
1521 "LR header",
1522 "unmount",
1523 "commit",
1524 "trans header"
1525 };
1526 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1527 "SETATTR_NOT_SIZE",
1528 "SETATTR_SIZE",
1529 "INACTIVE",
1530 "CREATE",
1531 "CREATE_TRUNC",
1532 "TRUNCATE_FILE",
1533 "REMOVE",
1534 "LINK",
1535 "RENAME",
1536 "MKDIR",
1537 "RMDIR",
1538 "SYMLINK",
1539 "SET_DMATTRS",
1540 "GROWFS",
1541 "STRAT_WRITE",
1542 "DIOSTRAT",
1543 "WRITE_SYNC",
1544 "WRITEID",
1545 "ADDAFORK",
1546 "ATTRINVAL",
1547 "ATRUNCATE",
1548 "ATTR_SET",
1549 "ATTR_RM",
1550 "ATTR_FLAG",
1551 "CLEAR_AGI_BUCKET",
1552 "QM_SBCHANGE",
1553 "DUMMY1",
1554 "DUMMY2",
1555 "QM_QUOTAOFF",
1556 "QM_DQALLOC",
1557 "QM_SETQLIM",
1558 "QM_DQCLUSTER",
1559 "QM_QINOCREATE",
1560 "QM_QUOTAOFF_END",
1561 "SB_UNIT",
1562 "FSYNC_TS",
1563 "GROWFSRT_ALLOC",
1564 "GROWFSRT_ZERO",
1565 "GROWFSRT_FREE",
1566 "SWAPEXT"
1567 };
1568
1569 xfs_fs_cmn_err(CE_WARN, mp,
1570 "xfs_log_write: reservation summary:\n"
1571 " trans type = %s (%u)\n"
1572 " unit res = %d bytes\n"
1573 " current res = %d bytes\n"
1574 " total reg = %u bytes (o/flow = %u bytes)\n"
1575 " ophdrs = %u (ophdr space = %u bytes)\n"
1576 " ophdr + reg = %u bytes\n"
1577 " num regions = %u\n",
1578 ((ticket->t_trans_type <= 0 ||
1579 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1580 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1581 ticket->t_trans_type,
1582 ticket->t_unit_res,
1583 ticket->t_curr_res,
1584 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1585 ticket->t_res_num_ophdrs, ophdr_spc,
1586 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001587 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001588 ticket->t_res_num);
1589
1590 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001591 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001592 cmn_err(CE_WARN,
1593 "region[%u]: %s - %u bytes\n",
1594 i,
1595 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1596 "bad-rtype" : res_type_str[r_type-1]),
1597 ticket->t_res_arr[i].r_len);
1598 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001599
1600 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1601 "xfs_log_write: reservation ran out. Need to up reservation");
1602 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001603}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001604
1605/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001606 * Calculate the potential space needed by the log vector. Each region gets
1607 * its own xlog_op_header_t and may need to be double word aligned.
1608 */
1609static int
1610xlog_write_calc_vec_length(
1611 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001612 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001613{
Dave Chinner55b66332010-03-23 11:43:17 +11001614 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001615 int headers = 0;
1616 int len = 0;
1617 int i;
1618
1619 /* acct for start rec of xact */
1620 if (ticket->t_flags & XLOG_TIC_INITED)
1621 headers++;
1622
Dave Chinner55b66332010-03-23 11:43:17 +11001623 for (lv = log_vector; lv; lv = lv->lv_next) {
1624 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001625
Dave Chinner55b66332010-03-23 11:43:17 +11001626 for (i = 0; i < lv->lv_niovecs; i++) {
1627 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1628
1629 len += vecp->i_len;
1630 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1631 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001632 }
1633
1634 ticket->t_res_num_ophdrs += headers;
1635 len += headers * sizeof(struct xlog_op_header);
1636
1637 return len;
1638}
1639
1640/*
1641 * If first write for transaction, insert start record We can't be trying to
1642 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1643 */
1644static int
1645xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001646 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001647 struct xlog_ticket *ticket)
1648{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001649 if (!(ticket->t_flags & XLOG_TIC_INITED))
1650 return 0;
1651
1652 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1653 ophdr->oh_clientid = ticket->t_clientid;
1654 ophdr->oh_len = 0;
1655 ophdr->oh_flags = XLOG_START_TRANS;
1656 ophdr->oh_res2 = 0;
1657
1658 ticket->t_flags &= ~XLOG_TIC_INITED;
1659
1660 return sizeof(struct xlog_op_header);
1661}
1662
1663static xlog_op_header_t *
1664xlog_write_setup_ophdr(
1665 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001666 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001667 struct xlog_ticket *ticket,
1668 uint flags)
1669{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001670 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1671 ophdr->oh_clientid = ticket->t_clientid;
1672 ophdr->oh_res2 = 0;
1673
1674 /* are we copying a commit or unmount record? */
1675 ophdr->oh_flags = flags;
1676
1677 /*
1678 * We've seen logs corrupted with bad transaction client ids. This
1679 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1680 * and shut down the filesystem.
1681 */
1682 switch (ophdr->oh_clientid) {
1683 case XFS_TRANSACTION:
1684 case XFS_VOLUME:
1685 case XFS_LOG:
1686 break;
1687 default:
1688 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1689 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1690 ophdr->oh_clientid, ticket);
1691 return NULL;
1692 }
1693
1694 return ophdr;
1695}
1696
1697/*
1698 * Set up the parameters of the region copy into the log. This has
1699 * to handle region write split across multiple log buffers - this
1700 * state is kept external to this function so that this code can
1701 * can be written in an obvious, self documenting manner.
1702 */
1703static int
1704xlog_write_setup_copy(
1705 struct xlog_ticket *ticket,
1706 struct xlog_op_header *ophdr,
1707 int space_available,
1708 int space_required,
1709 int *copy_off,
1710 int *copy_len,
1711 int *last_was_partial_copy,
1712 int *bytes_consumed)
1713{
1714 int still_to_copy;
1715
1716 still_to_copy = space_required - *bytes_consumed;
1717 *copy_off = *bytes_consumed;
1718
1719 if (still_to_copy <= space_available) {
1720 /* write of region completes here */
1721 *copy_len = still_to_copy;
1722 ophdr->oh_len = cpu_to_be32(*copy_len);
1723 if (*last_was_partial_copy)
1724 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1725 *last_was_partial_copy = 0;
1726 *bytes_consumed = 0;
1727 return 0;
1728 }
1729
1730 /* partial write of region, needs extra log op header reservation */
1731 *copy_len = space_available;
1732 ophdr->oh_len = cpu_to_be32(*copy_len);
1733 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1734 if (*last_was_partial_copy)
1735 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1736 *bytes_consumed += *copy_len;
1737 (*last_was_partial_copy)++;
1738
1739 /* account for new log op header */
1740 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1741 ticket->t_res_num_ophdrs++;
1742
1743 return sizeof(struct xlog_op_header);
1744}
1745
1746static int
1747xlog_write_copy_finish(
1748 struct log *log,
1749 struct xlog_in_core *iclog,
1750 uint flags,
1751 int *record_cnt,
1752 int *data_cnt,
1753 int *partial_copy,
1754 int *partial_copy_len,
1755 int log_offset,
1756 struct xlog_in_core **commit_iclog)
1757{
1758 if (*partial_copy) {
1759 /*
1760 * This iclog has already been marked WANT_SYNC by
1761 * xlog_state_get_iclog_space.
1762 */
1763 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1764 *record_cnt = 0;
1765 *data_cnt = 0;
1766 return xlog_state_release_iclog(log, iclog);
1767 }
1768
1769 *partial_copy = 0;
1770 *partial_copy_len = 0;
1771
1772 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1773 /* no more space in this iclog - push it. */
1774 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1775 *record_cnt = 0;
1776 *data_cnt = 0;
1777
1778 spin_lock(&log->l_icloglock);
1779 xlog_state_want_sync(log, iclog);
1780 spin_unlock(&log->l_icloglock);
1781
1782 if (!commit_iclog)
1783 return xlog_state_release_iclog(log, iclog);
1784 ASSERT(flags & XLOG_COMMIT_TRANS);
1785 *commit_iclog = iclog;
1786 }
1787
1788 return 0;
1789}
1790
1791/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 * Write some region out to in-core log
1793 *
1794 * This will be called when writing externally provided regions or when
1795 * writing out a commit record for a given transaction.
1796 *
1797 * General algorithm:
1798 * 1. Find total length of this write. This may include adding to the
1799 * lengths passed in.
1800 * 2. Check whether we violate the tickets reservation.
1801 * 3. While writing to this iclog
1802 * A. Reserve as much space in this iclog as can get
1803 * B. If this is first write, save away start lsn
1804 * C. While writing this region:
1805 * 1. If first write of transaction, write start record
1806 * 2. Write log operation header (header per region)
1807 * 3. Find out if we can fit entire region into this iclog
1808 * 4. Potentially, verify destination memcpy ptr
1809 * 5. Memcpy (partial) region
1810 * 6. If partial copy, release iclog; otherwise, continue
1811 * copying more regions into current iclog
1812 * 4. Mark want sync bit (in simulation mode)
1813 * 5. Release iclog for potential flush to on-disk log.
1814 *
1815 * ERRORS:
1816 * 1. Panic if reservation is overrun. This should never happen since
1817 * reservation amounts are generated internal to the filesystem.
1818 * NOTES:
1819 * 1. Tickets are single threaded data structures.
1820 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1821 * syncing routine. When a single log_write region needs to span
1822 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1823 * on all log operation writes which don't contain the end of the
1824 * region. The XLOG_END_TRANS bit is used for the in-core log
1825 * operation which contains the end of the continued log_write region.
1826 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1827 * we don't really know exactly how much space will be used. As a result,
1828 * we don't update ic_offset until the end when we know exactly how many
1829 * bytes have been written out.
1830 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001831int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001832xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001833 struct log *log,
1834 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001835 struct xlog_ticket *ticket,
1836 xfs_lsn_t *start_lsn,
1837 struct xlog_in_core **commit_iclog,
1838 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001840 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001841 struct xfs_log_iovec *vecp;
1842 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001843 int len;
1844 int index;
1845 int partial_copy = 0;
1846 int partial_copy_len = 0;
1847 int contwr = 0;
1848 int record_cnt = 0;
1849 int data_cnt = 0;
1850 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001852 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Dave Chinner55b66332010-03-23 11:43:17 +11001854 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner71e330b2010-05-21 14:37:18 +10001855 if (log->l_cilp) {
1856 /*
1857 * Region headers and bytes are already accounted for.
1858 * We only need to take into account start records and
1859 * split regions in this function.
1860 */
1861 if (ticket->t_flags & XLOG_TIC_INITED)
1862 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1863
1864 /*
1865 * Commit record headers need to be accounted for. These
1866 * come in as separate writes so are easy to detect.
1867 */
1868 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
1869 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1870 } else
1871 ticket->t_curr_res -= len;
1872
1873 if (ticket->t_curr_res < 0)
Dave Chinner55b66332010-03-23 11:43:17 +11001874 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Dave Chinner55b66332010-03-23 11:43:17 +11001876 index = 0;
1877 lv = log_vector;
1878 vecp = lv->lv_iovecp;
1879 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001880 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001881 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001883 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1884 &contwr, &log_offset);
1885 if (error)
1886 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001888 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001889 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001891 /* start_lsn is the first lsn written to. That's all we need. */
1892 if (!*start_lsn)
1893 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001895 /*
1896 * This loop writes out as many regions as can fit in the amount
1897 * of space which was allocated by xlog_state_get_iclog_space().
1898 */
Dave Chinner55b66332010-03-23 11:43:17 +11001899 while (lv && index < lv->lv_niovecs) {
1900 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001901 struct xlog_op_header *ophdr;
1902 int start_rec_copy;
1903 int copy_len;
1904 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Dave Chinner55b66332010-03-23 11:43:17 +11001906 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001907 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001909 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1910 if (start_rec_copy) {
1911 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001912 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001913 start_rec_copy);
1914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001916 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1917 if (!ophdr)
1918 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001920 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001921 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001923 len += xlog_write_setup_copy(ticket, ophdr,
1924 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001925 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001926 &copy_off, &copy_len,
1927 &partial_copy,
1928 &partial_copy_len);
1929 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001930
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001931 /* copy region */
1932 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001933 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1934 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001935
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001936 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1937 record_cnt++;
1938 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001940 error = xlog_write_copy_finish(log, iclog, flags,
1941 &record_cnt, &data_cnt,
1942 &partial_copy,
1943 &partial_copy_len,
1944 log_offset,
1945 commit_iclog);
1946 if (error)
1947 return error;
1948
1949 /*
1950 * if we had a partial copy, we need to get more iclog
1951 * space but we don't want to increment the region
1952 * index because there is still more is this region to
1953 * write.
1954 *
1955 * If we completed writing this region, and we flushed
1956 * the iclog (indicated by resetting of the record
1957 * count), then we also need to get more log space. If
1958 * this was the last record, though, we are done and
1959 * can just return.
1960 */
1961 if (partial_copy)
1962 break;
1963
Dave Chinner55b66332010-03-23 11:43:17 +11001964 if (++index == lv->lv_niovecs) {
1965 lv = lv->lv_next;
1966 index = 0;
1967 if (lv)
1968 vecp = lv->lv_iovecp;
1969 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001970 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11001971 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001972 return 0;
1973 break;
1974 }
1975 }
1976 }
1977
1978 ASSERT(len == 0);
1979
1980 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1981 if (!commit_iclog)
1982 return xlog_state_release_iclog(log, iclog);
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 ASSERT(flags & XLOG_COMMIT_TRANS);
1985 *commit_iclog = iclog;
1986 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989
1990/*****************************************************************************
1991 *
1992 * State Machine functions
1993 *
1994 *****************************************************************************
1995 */
1996
1997/* Clean iclogs starting from the head. This ordering must be
1998 * maintained, so an iclog doesn't become ACTIVE beyond one that
1999 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002000 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 * iclog is trying to sync to disk.
2002 *
2003 * State Change: DIRTY -> ACTIVE
2004 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002005STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006xlog_state_clean_log(xlog_t *log)
2007{
2008 xlog_in_core_t *iclog;
2009 int changed = 0;
2010
2011 iclog = log->l_iclog;
2012 do {
2013 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2014 iclog->ic_state = XLOG_STATE_ACTIVE;
2015 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002016 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /*
2018 * If the number of ops in this iclog indicate it just
2019 * contains the dummy transaction, we can
2020 * change state into IDLE (the second time around).
2021 * Otherwise we should change the state into
2022 * NEED a dummy.
2023 * We don't need to cover the dummy.
2024 */
2025 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002026 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2027 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 changed = 1;
2029 } else {
2030 /*
2031 * We have two dirty iclogs so start over
2032 * This could also be num of ops indicates
2033 * this is not the dummy going out.
2034 */
2035 changed = 2;
2036 }
2037 iclog->ic_header.h_num_logops = 0;
2038 memset(iclog->ic_header.h_cycle_data, 0,
2039 sizeof(iclog->ic_header.h_cycle_data));
2040 iclog->ic_header.h_lsn = 0;
2041 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2042 /* do nothing */;
2043 else
2044 break; /* stop cleaning */
2045 iclog = iclog->ic_next;
2046 } while (iclog != log->l_iclog);
2047
2048 /* log is locked when we are called */
2049 /*
2050 * Change state for the dummy log recording.
2051 * We usually go to NEED. But we go to NEED2 if the changed indicates
2052 * we are done writing the dummy record.
2053 * If we are done with the second dummy recored (DONE2), then
2054 * we go to IDLE.
2055 */
2056 if (changed) {
2057 switch (log->l_covered_state) {
2058 case XLOG_STATE_COVER_IDLE:
2059 case XLOG_STATE_COVER_NEED:
2060 case XLOG_STATE_COVER_NEED2:
2061 log->l_covered_state = XLOG_STATE_COVER_NEED;
2062 break;
2063
2064 case XLOG_STATE_COVER_DONE:
2065 if (changed == 1)
2066 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2067 else
2068 log->l_covered_state = XLOG_STATE_COVER_NEED;
2069 break;
2070
2071 case XLOG_STATE_COVER_DONE2:
2072 if (changed == 1)
2073 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2074 else
2075 log->l_covered_state = XLOG_STATE_COVER_NEED;
2076 break;
2077
2078 default:
2079 ASSERT(0);
2080 }
2081 }
2082} /* xlog_state_clean_log */
2083
2084STATIC xfs_lsn_t
2085xlog_get_lowest_lsn(
2086 xlog_t *log)
2087{
2088 xlog_in_core_t *lsn_log;
2089 xfs_lsn_t lowest_lsn, lsn;
2090
2091 lsn_log = log->l_iclog;
2092 lowest_lsn = 0;
2093 do {
2094 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002095 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 if ((lsn && !lowest_lsn) ||
2097 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2098 lowest_lsn = lsn;
2099 }
2100 }
2101 lsn_log = lsn_log->ic_next;
2102 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002103 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106
2107STATIC void
2108xlog_state_do_callback(
2109 xlog_t *log,
2110 int aborted,
2111 xlog_in_core_t *ciclog)
2112{
2113 xlog_in_core_t *iclog;
2114 xlog_in_core_t *first_iclog; /* used to know when we've
2115 * processed all iclogs once */
2116 xfs_log_callback_t *cb, *cb_next;
2117 int flushcnt = 0;
2118 xfs_lsn_t lowest_lsn;
2119 int ioerrors; /* counter: iclogs with errors */
2120 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2121 int funcdidcallbacks; /* flag: function did callbacks */
2122 int repeats; /* for issuing console warnings if
2123 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002124 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002126 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 first_iclog = iclog = log->l_iclog;
2128 ioerrors = 0;
2129 funcdidcallbacks = 0;
2130 repeats = 0;
2131
2132 do {
2133 /*
2134 * Scan all iclogs starting with the one pointed to by the
2135 * log. Reset this starting point each time the log is
2136 * unlocked (during callbacks).
2137 *
2138 * Keep looping through iclogs until one full pass is made
2139 * without running any callbacks.
2140 */
2141 first_iclog = log->l_iclog;
2142 iclog = log->l_iclog;
2143 loopdidcallbacks = 0;
2144 repeats++;
2145
2146 do {
2147
2148 /* skip all iclogs in the ACTIVE & DIRTY states */
2149 if (iclog->ic_state &
2150 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2151 iclog = iclog->ic_next;
2152 continue;
2153 }
2154
2155 /*
2156 * Between marking a filesystem SHUTDOWN and stopping
2157 * the log, we do flush all iclogs to disk (if there
2158 * wasn't a log I/O error). So, we do want things to
2159 * go smoothly in case of just a SHUTDOWN w/o a
2160 * LOG_IO_ERROR.
2161 */
2162 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2163 /*
2164 * Can only perform callbacks in order. Since
2165 * this iclog is not in the DONE_SYNC/
2166 * DO_CALLBACK state, we skip the rest and
2167 * just try to clean up. If we set our iclog
2168 * to DO_CALLBACK, we will not process it when
2169 * we retry since a previous iclog is in the
2170 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002171 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 */
2173 if (!(iclog->ic_state &
2174 (XLOG_STATE_DONE_SYNC |
2175 XLOG_STATE_DO_CALLBACK))) {
2176 if (ciclog && (ciclog->ic_state ==
2177 XLOG_STATE_DONE_SYNC)) {
2178 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2179 }
2180 break;
2181 }
2182 /*
2183 * We now have an iclog that is in either the
2184 * DO_CALLBACK or DONE_SYNC states. The other
2185 * states (WANT_SYNC, SYNCING, or CALLBACK were
2186 * caught by the above if and are going to
2187 * clean (i.e. we aren't doing their callbacks)
2188 * see the above if.
2189 */
2190
2191 /*
2192 * We will do one more check here to see if we
2193 * have chased our tail around.
2194 */
2195
2196 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002197 if (lowest_lsn &&
2198 XFS_LSN_CMP(lowest_lsn,
2199 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 iclog = iclog->ic_next;
2201 continue; /* Leave this iclog for
2202 * another thread */
2203 }
2204
2205 iclog->ic_state = XLOG_STATE_CALLBACK;
2206
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002207 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002210 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 * No one else can be here except us.
2212 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002213 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002214 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2215 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2216 log->l_last_sync_lsn =
2217 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002218 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002221 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 ioerrors++;
2223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
David Chinner114d23a2008-04-10 12:18:39 +10002225 /*
2226 * Keep processing entries in the callback list until
2227 * we come around and it is empty. We need to
2228 * atomically see that the list is empty and change the
2229 * state to DIRTY so that we don't miss any more
2230 * callbacks being added.
2231 */
2232 spin_lock(&iclog->ic_callback_lock);
2233 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002234 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 iclog->ic_callback_tail = &(iclog->ic_callback);
2236 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002237 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002240 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 cb_next = cb->cb_next;
2242 cb->cb_func(cb->cb_arg, aborted);
2243 }
David Chinner114d23a2008-04-10 12:18:39 +10002244 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 cb = iclog->ic_callback;
2246 }
2247
2248 loopdidcallbacks++;
2249 funcdidcallbacks++;
2250
David Chinner114d23a2008-04-10 12:18:39 +10002251 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002252 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002253 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2255 iclog->ic_state = XLOG_STATE_DIRTY;
2256
2257 /*
2258 * Transition from DIRTY to ACTIVE if applicable.
2259 * NOP if STATE_IOERROR.
2260 */
2261 xlog_state_clean_log(log);
2262
2263 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002264 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 iclog = iclog->ic_next;
2267 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002268
2269 if (repeats > 5000) {
2270 flushcnt += repeats;
2271 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002273 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002274 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276 } while (!ioerrors && loopdidcallbacks);
2277
2278 /*
2279 * make one last gasp attempt to see if iclogs are being left in
2280 * limbo..
2281 */
2282#ifdef DEBUG
2283 if (funcdidcallbacks) {
2284 first_iclog = iclog = log->l_iclog;
2285 do {
2286 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2287 /*
2288 * Terminate the loop if iclogs are found in states
2289 * which will cause other threads to clean up iclogs.
2290 *
2291 * SYNCING - i/o completion will go through logs
2292 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002293 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 * IOERROR - give up hope all ye who enter here
2295 */
2296 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2297 iclog->ic_state == XLOG_STATE_SYNCING ||
2298 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2299 iclog->ic_state == XLOG_STATE_IOERROR )
2300 break;
2301 iclog = iclog->ic_next;
2302 } while (first_iclog != iclog);
2303 }
2304#endif
2305
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002306 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2307 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002308 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002309
2310 if (wake)
2311 sv_broadcast(&log->l_flush_wait);
2312}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314
2315/*
2316 * Finish transitioning this iclog to the dirty state.
2317 *
2318 * Make sure that we completely execute this routine only when this is
2319 * the last call to the iclog. There is a good chance that iclog flushes,
2320 * when we reach the end of the physical log, get turned into 2 separate
2321 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2322 * routine. By using the reference count bwritecnt, we guarantee that only
2323 * the second completion goes through.
2324 *
2325 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002326 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 */
David Chinnera8272ce2007-11-23 16:28:09 +11002328STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329xlog_state_done_syncing(
2330 xlog_in_core_t *iclog,
2331 int aborted)
2332{
2333 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002335 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2338 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002339 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2341
2342
2343 /*
2344 * If we got an error, either on the first buffer, or in the case of
2345 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2346 * and none should ever be attempted to be written to disk
2347 * again.
2348 */
2349 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2350 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002351 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return;
2353 }
2354 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2355 }
2356
2357 /*
2358 * Someone could be sleeping prior to writing out the next
2359 * iclog buffer, we wake them all, one will get to do the
2360 * I/O, the others get to wait for the result.
2361 */
David Chinner12017fa2008-08-13 16:34:31 +10002362 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002363 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2365} /* xlog_state_done_syncing */
2366
2367
2368/*
2369 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002370 * sleep. We wait on the flush queue on the head iclog as that should be
2371 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2372 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 *
2374 * The in-core logs are used in a circular fashion. They are not used
2375 * out-of-order even when an iclog past the head is free.
2376 *
2377 * return:
2378 * * log_offset where xlog_write() can start writing into the in-core
2379 * log's data space.
2380 * * in-core log pointer to which xlog_write() should write.
2381 * * boolean indicating this is a continued write to an in-core log.
2382 * If this is the last write, then the in-core log's offset field
2383 * needs to be incremented, depending on the amount of data which
2384 * is copied.
2385 */
David Chinnera8272ce2007-11-23 16:28:09 +11002386STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387xlog_state_get_iclog_space(xlog_t *log,
2388 int len,
2389 xlog_in_core_t **iclogp,
2390 xlog_ticket_t *ticket,
2391 int *continued_write,
2392 int *logoffsetp)
2393{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 int log_offset;
2395 xlog_rec_header_t *head;
2396 xlog_in_core_t *iclog;
2397 int error;
2398
2399restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002400 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002402 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return XFS_ERROR(EIO);
2404 }
2405
2406 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002407 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002409
2410 /* Wait for log writes to have flushed */
2411 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 goto restart;
2413 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 head = &iclog->ic_header;
2416
David Chinner155cc6b2008-03-06 13:44:14 +11002417 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 log_offset = iclog->ic_offset;
2419
2420 /* On the 1st write to an iclog, figure out lsn. This works
2421 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2422 * committing to. If the offset is set, that's how many blocks
2423 * must be written.
2424 */
2425 if (log_offset == 0) {
2426 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002427 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002428 log->l_iclog_hsize,
2429 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002430 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2431 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002432 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 ASSERT(log->l_curr_block >= 0);
2434 }
2435
2436 /* If there is enough room to write everything, then do it. Otherwise,
2437 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2438 * bit is on, so this will get flushed out. Don't update ic_offset
2439 * until you know exactly how many bytes get copied. Therefore, wait
2440 * until later to update ic_offset.
2441 *
2442 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2443 * can fit into remaining data section.
2444 */
2445 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2446 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2447
Dave Chinner49641f12008-07-11 17:43:55 +10002448 /*
2449 * If I'm the only one writing to this iclog, sync it to disk.
2450 * We need to do an atomic compare and decrement here to avoid
2451 * racing with concurrent atomic_dec_and_lock() calls in
2452 * xlog_state_release_iclog() when there is more than one
2453 * reference to the iclog.
2454 */
2455 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2456 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002457 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002458 error = xlog_state_release_iclog(log, iclog);
2459 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002460 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002462 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 }
2464 goto restart;
2465 }
2466
2467 /* Do we have enough room to write the full amount in the remainder
2468 * of this iclog? Or must we continue a write on the next iclog and
2469 * mark this iclog as completely taken? In the case where we switch
2470 * iclogs (to mark it taken), this particular iclog will release/sync
2471 * to disk in xlog_write().
2472 */
2473 if (len <= iclog->ic_size - iclog->ic_offset) {
2474 *continued_write = 0;
2475 iclog->ic_offset += len;
2476 } else {
2477 *continued_write = 1;
2478 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2479 }
2480 *iclogp = iclog;
2481
2482 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002483 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485 *logoffsetp = log_offset;
2486 return 0;
2487} /* xlog_state_get_iclog_space */
2488
2489/*
2490 * Atomically get the log space required for a log ticket.
2491 *
2492 * Once a ticket gets put onto the reserveq, it will only return after
2493 * the needed reservation is satisfied.
2494 */
2495STATIC int
2496xlog_grant_log_space(xlog_t *log,
2497 xlog_ticket_t *tic)
2498{
2499 int free_bytes;
2500 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502#ifdef DEBUG
2503 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2504 panic("grant Recovery problem");
2505#endif
2506
2507 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002508 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002509
2510 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 /* something is already sleeping; insert new transaction at end */
Dave Chinner10547942010-12-21 12:02:25 +11002513 if (!list_empty(&log->l_reserveq)) {
2514 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002515
2516 trace_xfs_log_grant_sleep1(log, tic);
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 /*
2519 * Gotta check this before going to sleep, while we're
2520 * holding the grant lock.
2521 */
2522 if (XLOG_FORCED_SHUTDOWN(log))
2523 goto error_return;
2524
2525 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002526 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 /*
2528 * If we got an error, and the filesystem is shutting down,
2529 * we'll catch it down below. So just continue...
2530 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002531 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002532 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
2534 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2535 need_bytes = tic->t_unit_res*tic->t_ocnt;
2536 else
2537 need_bytes = tic->t_unit_res;
2538
2539redo:
2540 if (XLOG_FORCED_SHUTDOWN(log))
2541 goto error_return;
2542
Dave Chinnera69ed032010-12-21 12:08:20 +11002543 free_bytes = xlog_space_left(log, &log->l_grant_reserve_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002545 if (list_empty(&tic->t_queue))
2546 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002547
2548 trace_xfs_log_grant_sleep2(log, tic);
2549
Dave Chinner9d7fef72009-04-06 18:42:59 +02002550 spin_unlock(&log->l_grant_lock);
2551 xlog_grant_push_ail(log->l_mp, need_bytes);
2552 spin_lock(&log->l_grant_lock);
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002555 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Dave Chinner9d7fef72009-04-06 18:42:59 +02002557 spin_lock(&log->l_grant_lock);
2558 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002561 trace_xfs_log_grant_wake2(log, tic);
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002564 }
2565
2566 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568 /* we've got enough space */
Dave Chinnera69ed032010-12-21 12:08:20 +11002569 xlog_grant_add_space(log, &log->l_grant_reserve_head, need_bytes);
2570 xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002571 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 xlog_verify_grant_head(log, 1);
Dave Chinner3f336c62010-12-21 12:02:52 +11002573 xlog_verify_grant_tail(log);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002574 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return 0;
2576
2577 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002578 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002579 trace_xfs_log_grant_error(log, tic);
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 /*
2582 * If we are failing, make sure the ticket doesn't have any
2583 * current reservations. We don't want to add this back when
2584 * the ticket/transaction gets cancelled.
2585 */
2586 tic->t_curr_res = 0;
2587 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002588 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return XFS_ERROR(EIO);
2590} /* xlog_grant_log_space */
2591
2592
2593/*
2594 * Replenish the byte reservation required by moving the grant write head.
2595 *
2596 *
2597 */
2598STATIC int
2599xlog_regrant_write_log_space(xlog_t *log,
2600 xlog_ticket_t *tic)
2601{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 int free_bytes, need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002605 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002608 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610#ifdef DEBUG
2611 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2612 panic("regrant Recovery problem");
2613#endif
2614
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002615 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002616
2617 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 if (XLOG_FORCED_SHUTDOWN(log))
2620 goto error_return;
2621
2622 /* If there are other waiters on the queue then give them a
2623 * chance at logspace before us. Wake up the first waiters,
2624 * if we do not wake up all the waiters then go to sleep waiting
2625 * for more free space, otherwise try to get some space for
2626 * this transaction.
2627 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002628 need_bytes = tic->t_unit_res;
Dave Chinner10547942010-12-21 12:02:25 +11002629 if (!list_empty(&log->l_writeq)) {
2630 struct xlog_ticket *ntic;
Dave Chinnera69ed032010-12-21 12:08:20 +11002631 free_bytes = xlog_space_left(log, &log->l_grant_write_head);
Dave Chinner10547942010-12-21 12:02:25 +11002632 list_for_each_entry(ntic, &log->l_writeq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2634
2635 if (free_bytes < ntic->t_unit_res)
2636 break;
2637 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002638 sv_signal(&ntic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +11002639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Dave Chinner10547942010-12-21 12:02:25 +11002641 if (ntic != list_first_entry(&log->l_writeq,
2642 struct xlog_ticket, t_queue)) {
2643 if (list_empty(&tic->t_queue))
2644 list_add_tail(&tic->t_queue, &log->l_writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002646 trace_xfs_log_regrant_write_sleep1(log, tic);
2647
Dave Chinner9d7fef72009-04-06 18:42:59 +02002648 spin_unlock(&log->l_grant_lock);
2649 xlog_grant_push_ail(log->l_mp, need_bytes);
2650 spin_lock(&log->l_grant_lock);
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002653 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 &log->l_grant_lock, s);
2655
2656 /* If we're shutting down, this tic is already
2657 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002658 spin_lock(&log->l_grant_lock);
2659 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002662 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
2664 }
2665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666redo:
2667 if (XLOG_FORCED_SHUTDOWN(log))
2668 goto error_return;
2669
Dave Chinnera69ed032010-12-21 12:08:20 +11002670 free_bytes = xlog_space_left(log, &log->l_grant_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002672 if (list_empty(&tic->t_queue))
2673 list_add_tail(&tic->t_queue, &log->l_writeq);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002674 spin_unlock(&log->l_grant_lock);
2675 xlog_grant_push_ail(log->l_mp, need_bytes);
2676 spin_lock(&log->l_grant_lock);
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002679 trace_xfs_log_regrant_write_sleep2(log, tic);
2680
David Chinner12017fa2008-08-13 16:34:31 +10002681 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002684 spin_lock(&log->l_grant_lock);
2685 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002688 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002690 }
2691
2692 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002694 /* we've got enough space */
Dave Chinnera69ed032010-12-21 12:08:20 +11002695 xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002696 trace_xfs_log_regrant_write_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 xlog_verify_grant_head(log, 1);
Dave Chinner3f336c62010-12-21 12:02:52 +11002698 xlog_verify_grant_tail(log);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002699 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702
2703 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002704 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002705 trace_xfs_log_regrant_write_error(log, tic);
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /*
2708 * If we are failing, make sure the ticket doesn't have any
2709 * current reservations. We don't want to add this back when
2710 * the ticket/transaction gets cancelled.
2711 */
2712 tic->t_curr_res = 0;
2713 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002714 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 return XFS_ERROR(EIO);
2716} /* xlog_regrant_write_log_space */
2717
2718
2719/* The first cnt-1 times through here we don't need to
2720 * move the grant write head because the permanent
2721 * reservation has reserved cnt times the unit amount.
2722 * Release part of current permanent unit reservation and
2723 * reset current reservation to be one units worth. Also
2724 * move grant reservation head forward.
2725 */
2726STATIC void
2727xlog_regrant_reserve_log_space(xlog_t *log,
2728 xlog_ticket_t *ticket)
2729{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002730 trace_xfs_log_regrant_reserve_enter(log, ticket);
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 if (ticket->t_cnt > 0)
2733 ticket->t_cnt--;
2734
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002735 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11002736 xlog_grant_sub_space(log, &log->l_grant_reserve_head,
2737 ticket->t_curr_res);
2738 xlog_grant_sub_space(log, &log->l_grant_write_head,
2739 ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002741 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002742
2743 trace_xfs_log_regrant_reserve_sub(log, ticket);
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 xlog_verify_grant_head(log, 1);
2746
2747 /* just return if we still have some of the pre-reserved space */
2748 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002749 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 return;
2751 }
2752
Dave Chinnera69ed032010-12-21 12:08:20 +11002753 xlog_grant_add_space(log, &log->l_grant_reserve_head,
2754 ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002755
2756 trace_xfs_log_regrant_reserve_exit(log, ticket);
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002759 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002761 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762} /* xlog_regrant_reserve_log_space */
2763
2764
2765/*
2766 * Give back the space left from a reservation.
2767 *
2768 * All the information we need to make a correct determination of space left
2769 * is present. For non-permanent reservations, things are quite easy. The
2770 * count should have been decremented to zero. We only need to deal with the
2771 * space remaining in the current reservation part of the ticket. If the
2772 * ticket contains a permanent reservation, there may be left over space which
2773 * needs to be released. A count of N means that N-1 refills of the current
2774 * reservation can be done before we need to ask for more space. The first
2775 * one goes to fill up the first current reservation. Once we run out of
2776 * space, the count will stay at zero and the only space remaining will be
2777 * in the current reservation field.
2778 */
2779STATIC void
2780xlog_ungrant_log_space(xlog_t *log,
2781 xlog_ticket_t *ticket)
2782{
Dave Chinner663e4962010-12-21 12:06:05 +11002783 int bytes;
2784
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (ticket->t_cnt > 0)
2786 ticket->t_cnt--;
2787
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002788 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002789 trace_xfs_log_ungrant_enter(log, ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002790 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Dave Chinner663e4962010-12-21 12:06:05 +11002792 /*
2793 * If this is a permanent reservation ticket, we may be able to free
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 * up more space based on the remaining count.
2795 */
Dave Chinner663e4962010-12-21 12:06:05 +11002796 bytes = ticket->t_curr_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 if (ticket->t_cnt > 0) {
2798 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Dave Chinner663e4962010-12-21 12:06:05 +11002799 bytes += ticket->t_unit_res*ticket->t_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
2801
Dave Chinnera69ed032010-12-21 12:08:20 +11002802 xlog_grant_sub_space(log, &log->l_grant_reserve_head, bytes);
2803 xlog_grant_sub_space(log, &log->l_grant_write_head, bytes);
Dave Chinner663e4962010-12-21 12:06:05 +11002804
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002805 trace_xfs_log_ungrant_exit(log, ticket);
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002808 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 xfs_log_move_tail(log->l_mp, 1);
2810} /* xlog_ungrant_log_space */
2811
2812
2813/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 * Flush iclog to disk if this is the last reference to the given iclog and
2815 * the WANT_SYNC bit is set.
2816 *
2817 * When this function is entered, the iclog is not necessarily in the
2818 * WANT_SYNC state. It may be sitting around waiting to get filled.
2819 *
2820 *
2821 */
David Chinnera8272ce2007-11-23 16:28:09 +11002822STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002823xlog_state_release_iclog(
2824 xlog_t *log,
2825 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 int sync = 0; /* do we sync? */
2828
David Chinner155cc6b2008-03-06 13:44:14 +11002829 if (iclog->ic_state & XLOG_STATE_IOERROR)
2830 return XFS_ERROR(EIO);
2831
2832 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2833 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2834 return 0;
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002837 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return XFS_ERROR(EIO);
2839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2841 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2842
David Chinner155cc6b2008-03-06 13:44:14 +11002843 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002844 /* update tail before writing to iclog */
2845 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 sync++;
2847 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002848 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2850 /* cycle incremented when incrementing curr_block */
2851 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002852 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
2854 /*
2855 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002856 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2858 * this iclog has consistent data, so we ignore IOERROR
2859 * flags after this point.
2860 */
David Chinnerb5893342008-03-06 13:44:06 +11002861 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864} /* xlog_state_release_iclog */
2865
2866
2867/*
2868 * This routine will mark the current iclog in the ring as WANT_SYNC
2869 * and move the current iclog pointer to the next iclog in the ring.
2870 * When this routine is called from xlog_state_get_iclog_space(), the
2871 * exact size of the iclog has not yet been determined. All we know is
2872 * that every data block. We have run out of space in this log record.
2873 */
2874STATIC void
2875xlog_state_switch_iclogs(xlog_t *log,
2876 xlog_in_core_t *iclog,
2877 int eventual_size)
2878{
2879 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2880 if (!eventual_size)
2881 eventual_size = iclog->ic_offset;
2882 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002883 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 log->l_prev_block = log->l_curr_block;
2885 log->l_prev_cycle = log->l_curr_cycle;
2886
2887 /* roll log?: ic_offset changed later */
2888 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2889
2890 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002891 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 log->l_mp->m_sb.sb_logsunit > 1) {
2893 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2894 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2895 }
2896
2897 if (log->l_curr_block >= log->l_logBBsize) {
2898 log->l_curr_cycle++;
2899 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2900 log->l_curr_cycle++;
2901 log->l_curr_block -= log->l_logBBsize;
2902 ASSERT(log->l_curr_block >= 0);
2903 }
2904 ASSERT(iclog == log->l_iclog);
2905 log->l_iclog = iclog->ic_next;
2906} /* xlog_state_switch_iclogs */
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908/*
2909 * Write out all data in the in-core log as of this exact moment in time.
2910 *
2911 * Data may be written to the in-core log during this call. However,
2912 * we don't guarantee this data will be written out. A change from past
2913 * implementation means this routine will *not* write out zero length LRs.
2914 *
2915 * Basically, we try and perform an intelligent scan of the in-core logs.
2916 * If we determine there is no flushable data, we just return. There is no
2917 * flushable data if:
2918 *
2919 * 1. the current iclog is active and has no data; the previous iclog
2920 * is in the active or dirty state.
2921 * 2. the current iclog is drity, and the previous iclog is in the
2922 * active or dirty state.
2923 *
David Chinner12017fa2008-08-13 16:34:31 +10002924 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 *
2926 * 1. the current iclog is not in the active nor dirty state.
2927 * 2. the current iclog dirty, and the previous iclog is not in the
2928 * active nor dirty state.
2929 * 3. the current iclog is active, and there is another thread writing
2930 * to this particular iclog.
2931 * 4. a) the current iclog is active and has no other writers
2932 * b) when we return from flushing out this iclog, it is still
2933 * not in the active nor dirty state.
2934 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002935int
2936_xfs_log_force(
2937 struct xfs_mount *mp,
2938 uint flags,
2939 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002941 struct log *log = mp->m_log;
2942 struct xlog_in_core *iclog;
2943 xfs_lsn_t lsn;
2944
2945 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Dave Chinnera44f13e2010-08-24 11:40:03 +10002947 if (log->l_cilp)
2948 xlog_cil_force(log);
Dave Chinner71e330b2010-05-21 14:37:18 +10002949
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002950 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952 iclog = log->l_iclog;
2953 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002954 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 return XFS_ERROR(EIO);
2956 }
2957
2958 /* If the head iclog is not active nor dirty, we just attach
2959 * ourselves to the head and go to sleep.
2960 */
2961 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2962 iclog->ic_state == XLOG_STATE_DIRTY) {
2963 /*
2964 * If the head is dirty or (active and empty), then
2965 * we need to look at the previous iclog. If the previous
2966 * iclog is active or dirty we are done. There is nothing
2967 * to sync out. Otherwise, we attach ourselves to the
2968 * previous iclog and go to sleep.
2969 */
2970 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002971 (atomic_read(&iclog->ic_refcnt) == 0
2972 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 iclog = iclog->ic_prev;
2974 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2975 iclog->ic_state == XLOG_STATE_DIRTY)
2976 goto no_sleep;
2977 else
2978 goto maybe_sleep;
2979 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11002980 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 /* We are the only one with access to this
2982 * iclog. Flush it out now. There should
2983 * be a roundoff of zero to show that someone
2984 * has already taken care of the roundoff from
2985 * the previous sync.
2986 */
David Chinner155cc6b2008-03-06 13:44:14 +11002987 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002988 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002990 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992 if (xlog_state_release_iclog(log, iclog))
2993 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002994
2995 if (log_flushed)
2996 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002997 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002998 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 iclog->ic_state != XLOG_STATE_DIRTY)
3000 goto maybe_sleep;
3001 else
3002 goto no_sleep;
3003 } else {
3004 /* Someone else is writing to this iclog.
3005 * Use its call to flush out the data. However,
3006 * the other thread may not force out this LR,
3007 * so we mark it WANT_SYNC.
3008 */
3009 xlog_state_switch_iclogs(log, iclog, 0);
3010 goto maybe_sleep;
3011 }
3012 }
3013 }
3014
3015 /* By the time we come around again, the iclog could've been filled
3016 * which would give it another lsn. If we have a new lsn, just
3017 * return because the relevant data has been flushed.
3018 */
3019maybe_sleep:
3020 if (flags & XFS_LOG_SYNC) {
3021 /*
3022 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003023 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 * Then we check again after waking up, in case our
3025 * sleep was disturbed by a bad news.
3026 */
3027 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003028 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return XFS_ERROR(EIO);
3030 }
3031 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003032 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 /*
3034 * No need to grab the log lock here since we're
3035 * only deciding whether or not to return EIO
3036 * and the memory read should be atomic.
3037 */
3038 if (iclog->ic_state & XLOG_STATE_IOERROR)
3039 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003040 if (log_flushed)
3041 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 } else {
3043
3044no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003045 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
3047 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003048}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003051 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3052 * about errors or whether the log was flushed or not. This is the normal
3053 * interface to use when trying to unpin items or move the log forward.
3054 */
3055void
3056xfs_log_force(
3057 xfs_mount_t *mp,
3058 uint flags)
3059{
3060 int error;
3061
3062 error = _xfs_log_force(mp, flags, NULL);
3063 if (error) {
3064 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3065 "error %d returned.", error);
3066 }
3067}
3068
3069/*
3070 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 *
3072 * Find in-core log with lsn.
3073 * If it is in the DIRTY state, just return.
3074 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3075 * state and go to sleep or return.
3076 * If it is in any other state, go to sleep or return.
3077 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003078 * Synchronous forces are implemented with a signal variable. All callers
3079 * to force a given lsn to disk will wait on a the sv attached to the
3080 * specific in-core log. When given in-core log finally completes its
3081 * write to disk, that thread will wake up all threads waiting on the
3082 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003084int
3085_xfs_log_force_lsn(
3086 struct xfs_mount *mp,
3087 xfs_lsn_t lsn,
3088 uint flags,
3089 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003091 struct log *log = mp->m_log;
3092 struct xlog_in_core *iclog;
3093 int already_slept = 0;
3094
3095 ASSERT(lsn != 0);
3096
3097 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Dave Chinner71e330b2010-05-21 14:37:18 +10003099 if (log->l_cilp) {
Dave Chinnera44f13e2010-08-24 11:40:03 +10003100 lsn = xlog_cil_force_lsn(log, lsn);
Dave Chinner71e330b2010-05-21 14:37:18 +10003101 if (lsn == NULLCOMMITLSN)
3102 return 0;
3103 }
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003106 spin_lock(&log->l_icloglock);
3107 iclog = log->l_iclog;
3108 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003109 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003110 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 }
3112
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003113 do {
3114 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3115 iclog = iclog->ic_next;
3116 continue;
3117 }
3118
3119 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3120 spin_unlock(&log->l_icloglock);
3121 return 0;
3122 }
3123
3124 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3125 /*
3126 * We sleep here if we haven't already slept (e.g.
3127 * this is the first time we've looked at the correct
3128 * iclog buf) and the buffer before us is going to
3129 * be sync'ed. The reason for this is that if we
3130 * are doing sync transactions here, by waiting for
3131 * the previous I/O to complete, we can allow a few
3132 * more transactions into this iclog before we close
3133 * it down.
3134 *
3135 * Otherwise, we mark the buffer WANT_SYNC, and bump
3136 * up the refcnt so we can release the log (which
3137 * drops the ref count). The state switch keeps new
3138 * transaction commits from using this buffer. When
3139 * the current commits finish writing into the buffer,
3140 * the refcount will drop to zero and the buffer will
3141 * go out then.
3142 */
3143 if (!already_slept &&
3144 (iclog->ic_prev->ic_state &
3145 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3146 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3147
3148 XFS_STATS_INC(xs_log_force_sleep);
3149
3150 sv_wait(&iclog->ic_prev->ic_write_wait,
3151 PSWP, &log->l_icloglock, s);
3152 if (log_flushed)
3153 *log_flushed = 1;
3154 already_slept = 1;
3155 goto try_again;
3156 }
David Chinner155cc6b2008-03-06 13:44:14 +11003157 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003159 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 if (xlog_state_release_iclog(log, iclog))
3161 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003162 if (log_flushed)
3163 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003164 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003167 if ((flags & XFS_LOG_SYNC) && /* sleep */
3168 !(iclog->ic_state &
3169 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3170 /*
3171 * Don't wait on completion if we know that we've
3172 * gotten a log write error.
3173 */
3174 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3175 spin_unlock(&log->l_icloglock);
3176 return XFS_ERROR(EIO);
3177 }
3178 XFS_STATS_INC(xs_log_force_sleep);
3179 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3180 /*
3181 * No need to grab the log lock here since we're
3182 * only deciding whether or not to return EIO
3183 * and the memory read should be atomic.
3184 */
3185 if (iclog->ic_state & XLOG_STATE_IOERROR)
3186 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003188 if (log_flushed)
3189 *log_flushed = 1;
3190 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003191 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003193
3194 return 0;
3195 } while (iclog != log->l_iclog);
3196
3197 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003201/*
3202 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3203 * about errors or whether the log was flushed or not. This is the normal
3204 * interface to use when trying to unpin items or move the log forward.
3205 */
3206void
3207xfs_log_force_lsn(
3208 xfs_mount_t *mp,
3209 xfs_lsn_t lsn,
3210 uint flags)
3211{
3212 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003214 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3215 if (error) {
3216 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3217 "error %d returned.", error);
3218 }
3219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221/*
3222 * Called when we want to mark the current iclog as being ready to sync to
3223 * disk.
3224 */
David Chinnera8272ce2007-11-23 16:28:09 +11003225STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3227{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003228 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3231 xlog_state_switch_iclogs(log, iclog, 0);
3232 } else {
3233 ASSERT(iclog->ic_state &
3234 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3235 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238
3239/*****************************************************************************
3240 *
3241 * TICKET functions
3242 *
3243 *****************************************************************************
3244 */
3245
3246/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003247 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003249void
3250xfs_log_ticket_put(
3251 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003253 ASSERT(atomic_read(&ticket->t_ref) > 0);
3254 if (atomic_dec_and_test(&ticket->t_ref)) {
3255 sv_destroy(&ticket->t_wait);
3256 kmem_zone_free(xfs_log_ticket_zone, ticket);
3257 }
3258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003260xlog_ticket_t *
3261xfs_log_ticket_get(
3262 xlog_ticket_t *ticket)
3263{
3264 ASSERT(atomic_read(&ticket->t_ref) > 0);
3265 atomic_inc(&ticket->t_ref);
3266 return ticket;
3267}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Dave Chinner955833c2010-05-14 21:41:46 +10003269xlog_tid_t
3270xfs_log_get_trans_ident(
3271 struct xfs_trans *tp)
3272{
3273 return tp->t_ticket->t_tid;
3274}
3275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003277 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 */
Dave Chinner71e330b2010-05-21 14:37:18 +10003279xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003280xlog_ticket_alloc(
3281 struct log *log,
3282 int unit_bytes,
3283 int cnt,
3284 char client,
Dave Chinner3383ca52010-05-07 11:04:17 +10003285 uint xflags,
3286 int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003288 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003290 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Dave Chinner3383ca52010-05-07 11:04:17 +10003292 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
David Chinnereb01c9c2008-04-10 12:18:46 +10003293 if (!tic)
3294 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296 /*
3297 * Permanent reservations have up to 'cnt'-1 active log operations
3298 * in the log. A unit in this case is the amount of space for one
3299 * of these log operations. Normal reservations have a cnt of 1
3300 * and their unit amount is the total amount of space required.
3301 *
3302 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003303 * which occupy space in the on-disk log.
3304 *
3305 * Normal form of a transaction is:
3306 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3307 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3308 *
3309 * We need to account for all the leadup data and trailer data
3310 * around the transaction data.
3311 * And then we need to account for the worst case in terms of using
3312 * more space.
3313 * The worst case will happen if:
3314 * - the placement of the transaction happens to be such that the
3315 * roundoff is at its maximum
3316 * - the transaction data is synced before the commit record is synced
3317 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3318 * Therefore the commit record is in its own Log Record.
3319 * This can happen as the commit record is called with its
3320 * own region to xlog_write().
3321 * This then means that in the worst case, roundoff can happen for
3322 * the commit-rec as well.
3323 * The commit-rec is smaller than padding in this scenario and so it is
3324 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 */
3326
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003327 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003329 unit_bytes += sizeof(xfs_trans_header_t);
3330
3331 /* for start-rec */
3332 unit_bytes += sizeof(xlog_op_header_t);
3333
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003334 /*
3335 * for LR headers - the space for data in an iclog is the size minus
3336 * the space used for the headers. If we use the iclog size, then we
3337 * undercalculate the number of headers required.
3338 *
3339 * Furthermore - the addition of op headers for split-recs might
3340 * increase the space required enough to require more log and op
3341 * headers, so take that into account too.
3342 *
3343 * IMPORTANT: This reservation makes the assumption that if this
3344 * transaction is the first in an iclog and hence has the LR headers
3345 * accounted to it, then the remaining space in the iclog is
3346 * exclusively for this transaction. i.e. if the transaction is larger
3347 * than the iclog, it will be the only thing in that iclog.
3348 * Fundamentally, this means we must pass the entire log vector to
3349 * xlog_write to guarantee this.
3350 */
3351 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3352 num_headers = howmany(unit_bytes, iclog_space);
3353
3354 /* for split-recs - ophdrs added when data split over LRs */
3355 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3356
3357 /* add extra header reservations if we overrun */
3358 while (!num_headers ||
3359 howmany(unit_bytes, iclog_space) > num_headers) {
3360 unit_bytes += sizeof(xlog_op_header_t);
3361 num_headers++;
3362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 unit_bytes += log->l_iclog_hsize * num_headers;
3364
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003365 /* for commit-rec LR header - note: padding will subsume the ophdr */
3366 unit_bytes += log->l_iclog_hsize;
3367
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003368 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003369 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003370 log->l_mp->m_sb.sb_logsunit > 1) {
3371 /* log su roundoff */
3372 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3373 } else {
3374 /* BB roundoff */
3375 unit_bytes += 2*BBSIZE;
3376 }
3377
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003378 atomic_set(&tic->t_ref, 1);
Dave Chinner10547942010-12-21 12:02:25 +11003379 INIT_LIST_HEAD(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 tic->t_unit_res = unit_bytes;
3381 tic->t_curr_res = unit_bytes;
3382 tic->t_cnt = cnt;
3383 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003384 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 tic->t_clientid = client;
3386 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003387 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 if (xflags & XFS_LOG_PERM_RESERV)
3389 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003390 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Christoph Hellwig0adba532007-08-30 17:21:46 +10003392 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003395}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397
3398/******************************************************************************
3399 *
3400 * Log debug routines
3401 *
3402 ******************************************************************************
3403 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003404#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405/*
3406 * Make sure that the destination ptr is within the valid data region of
3407 * one of the iclogs. This uses backup pointers stored in a different
3408 * part of the log in case we trash the log structure.
3409 */
3410void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003411xlog_verify_dest_ptr(
3412 struct log *log,
3413 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414{
3415 int i;
3416 int good_ptr = 0;
3417
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003418 for (i = 0; i < log->l_iclog_bufs; i++) {
3419 if (ptr >= log->l_iclog_bak[i] &&
3420 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 good_ptr++;
3422 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003423
3424 if (!good_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428STATIC void
3429xlog_verify_grant_head(xlog_t *log, int equals)
3430{
Dave Chinnera69ed032010-12-21 12:08:20 +11003431 int reserve_cycle, reserve_space;
3432 int write_cycle, write_space;
3433
3434 xlog_crack_grant_head(&log->l_grant_reserve_head,
3435 &reserve_cycle, &reserve_space);
3436 xlog_crack_grant_head(&log->l_grant_write_head,
3437 &write_cycle, &write_space);
3438
3439 if (reserve_cycle == write_cycle) {
3440 if (equals)
3441 ASSERT(reserve_space >= write_space);
3442 else
3443 ASSERT(reserve_space > write_space);
3444 } else {
3445 ASSERT(reserve_cycle - 1 == write_cycle);
3446 ASSERT(write_space >= reserve_space);
3447 }
3448}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Dave Chinner3f336c62010-12-21 12:02:52 +11003450STATIC void
3451xlog_verify_grant_tail(
3452 struct log *log)
3453{
3454 xfs_lsn_t tail_lsn = log->l_tail_lsn;
Dave Chinnera69ed032010-12-21 12:08:20 +11003455 int cycle, space;
Dave Chinner3f336c62010-12-21 12:02:52 +11003456
3457 /*
3458 * Check to make sure the grant write head didn't just over lap the
3459 * tail. If the cycles are the same, we can't be overlapping.
3460 * Otherwise, make sure that the cycles differ by exactly one and
3461 * check the byte count.
3462 */
Dave Chinnera69ed032010-12-21 12:08:20 +11003463 xlog_crack_grant_head(&log->l_grant_write_head, &cycle, &space);
3464 if (CYCLE_LSN(tail_lsn) != cycle) {
3465 ASSERT(cycle - 1 == CYCLE_LSN(tail_lsn));
3466 ASSERT(space <= BBTOB(BLOCK_LSN(tail_lsn)));
Dave Chinner3f336c62010-12-21 12:02:52 +11003467 }
3468}
3469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470/* check if it will fit */
3471STATIC void
3472xlog_verify_tail_lsn(xlog_t *log,
3473 xlog_in_core_t *iclog,
3474 xfs_lsn_t tail_lsn)
3475{
3476 int blocks;
3477
3478 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3479 blocks =
3480 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3481 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3482 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3483 } else {
3484 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3485
3486 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3487 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3488
3489 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3490 if (blocks < BTOBB(iclog->ic_offset) + 1)
3491 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3492 }
3493} /* xlog_verify_tail_lsn */
3494
3495/*
3496 * Perform a number of checks on the iclog before writing to disk.
3497 *
3498 * 1. Make sure the iclogs are still circular
3499 * 2. Make sure we have a good magic number
3500 * 3. Make sure we don't have magic numbers in the data
3501 * 4. Check fields of each log operation header for:
3502 * A. Valid client identifier
3503 * B. tid ptr value falls in valid ptr space (user space code)
3504 * C. Length in log record header is correct according to the
3505 * individual operation headers within record.
3506 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3507 * log, check the preceding blocks of the physical log to make sure all
3508 * the cycle numbers agree with the current cycle number.
3509 */
3510STATIC void
3511xlog_verify_iclog(xlog_t *log,
3512 xlog_in_core_t *iclog,
3513 int count,
3514 boolean_t syncing)
3515{
3516 xlog_op_header_t *ophead;
3517 xlog_in_core_t *icptr;
3518 xlog_in_core_2_t *xhdr;
3519 xfs_caddr_t ptr;
3520 xfs_caddr_t base_ptr;
3521 __psint_t field_offset;
3522 __uint8_t clientid;
3523 int len, i, j, k, op_len;
3524 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
3526 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003527 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 icptr = log->l_iclog;
3529 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003530 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 xlog_panic("xlog_verify_iclog: invalid ptr");
3532 icptr = icptr->ic_next;
3533 }
3534 if (icptr != log->l_iclog)
3535 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003536 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
3538 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003539 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 xlog_panic("xlog_verify_iclog: invalid magic num");
3541
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003542 ptr = (xfs_caddr_t) &iclog->ic_header;
3543 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003545 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 xlog_panic("xlog_verify_iclog: unexpected magic num");
3547 }
3548
3549 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003550 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 ptr = iclog->ic_datap;
3552 base_ptr = ptr;
3553 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003554 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 for (i = 0; i < len; i++) {
3556 ophead = (xlog_op_header_t *)ptr;
3557
3558 /* clientid is only 1 byte */
3559 field_offset = (__psint_t)
3560 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3561 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3562 clientid = ophead->oh_clientid;
3563 } else {
3564 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3565 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3566 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3567 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003568 clientid = xlog_get_client_id(
3569 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003571 clientid = xlog_get_client_id(
3572 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 }
3574 }
3575 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003576 cmn_err(CE_WARN, "xlog_verify_iclog: "
3577 "invalid clientid %d op 0x%p offset 0x%lx",
3578 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
3580 /* check length */
3581 field_offset = (__psint_t)
3582 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3583 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003584 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 } else {
3586 idx = BTOBBT((__psint_t)&ophead->oh_len -
3587 (__psint_t)iclog->ic_datap);
3588 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3589 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3590 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003591 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003593 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 }
3595 }
3596 ptr += sizeof(xlog_op_header_t) + op_len;
3597 }
3598} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003599#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003602 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 */
3604STATIC int
3605xlog_state_ioerror(
3606 xlog_t *log)
3607{
3608 xlog_in_core_t *iclog, *ic;
3609
3610 iclog = log->l_iclog;
3611 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3612 /*
3613 * Mark all the incore logs IOERROR.
3614 * From now on, no log flushes will result.
3615 */
3616 ic = iclog;
3617 do {
3618 ic->ic_state = XLOG_STATE_IOERROR;
3619 ic = ic->ic_next;
3620 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 }
3623 /*
3624 * Return non-zero, if state transition has already happened.
3625 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003626 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627}
3628
3629/*
3630 * This is called from xfs_force_shutdown, when we're forcibly
3631 * shutting down the filesystem, typically because of an IO error.
3632 * Our main objectives here are to make sure that:
3633 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3634 * parties to find out, 'atomically'.
3635 * b. those who're sleeping on log reservations, pinned objects and
3636 * other resources get woken up, and be told the bad news.
3637 * c. nothing new gets queued up after (a) and (b) are done.
3638 * d. if !logerror, flush the iclogs to disk, then seal them off
3639 * for business.
Dave Chinner9da1ab12010-05-17 15:51:59 +10003640 *
3641 * Note: for delayed logging the !logerror case needs to flush the regions
3642 * held in memory out to the iclogs before flushing them to disk. This needs
3643 * to be done before the log is marked as shutdown, otherwise the flush to the
3644 * iclogs will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 */
3646int
3647xfs_log_force_umount(
3648 struct xfs_mount *mp,
3649 int logerror)
3650{
3651 xlog_ticket_t *tic;
3652 xlog_t *log;
3653 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655 log = mp->m_log;
3656
3657 /*
3658 * If this happens during log recovery, don't worry about
3659 * locking; the log isn't open for business yet.
3660 */
3661 if (!log ||
3662 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3663 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003664 if (mp->m_sb_bp)
3665 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
3668
3669 /*
3670 * Somebody could've already done the hard work for us.
3671 * No need to get locks for this.
3672 */
3673 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3674 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003675 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677 retval = 0;
Dave Chinner9da1ab12010-05-17 15:51:59 +10003678
3679 /*
3680 * Flush the in memory commit item list before marking the log as
3681 * being shut down. We need to do it in this order to ensure all the
3682 * completed transactions are flushed to disk with the xfs_log_force()
3683 * call below.
3684 */
3685 if (!logerror && (mp->m_flags & XFS_MOUNT_DELAYLOG))
Dave Chinnera44f13e2010-08-24 11:40:03 +10003686 xlog_cil_force(log);
Dave Chinner9da1ab12010-05-17 15:51:59 +10003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 /*
3689 * We must hold both the GRANT lock and the LOG lock,
3690 * before we mark the filesystem SHUTDOWN and wake
3691 * everybody up to tell the bad news.
3692 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003693 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003694 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003696 if (mp->m_sb_bp)
3697 XFS_BUF_DONE(mp->m_sb_bp);
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 /*
3700 * This flag is sort of redundant because of the mount flag, but
3701 * it's good to maintain the separation between the log and the rest
3702 * of XFS.
3703 */
3704 log->l_flags |= XLOG_IO_ERROR;
3705
3706 /*
3707 * If we hit a log error, we want to mark all the iclogs IOERROR
3708 * while we're still holding the loglock.
3709 */
3710 if (logerror)
3711 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003712 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
3714 /*
Dave Chinner10547942010-12-21 12:02:25 +11003715 * We don't want anybody waiting for log reservations after this. That
3716 * means we have to wake up everybody queued up on reserveq as well as
3717 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3718 * we don't enqueue anything once the SHUTDOWN flag is set, and this
3719 * action is protected by the GRANTLOCK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 */
Dave Chinner10547942010-12-21 12:02:25 +11003721 list_for_each_entry(tic, &log->l_reserveq, t_queue)
3722 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Dave Chinner10547942010-12-21 12:02:25 +11003724 list_for_each_entry(tic, &log->l_writeq, t_queue)
3725 sv_signal(&tic->t_wait);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003726 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003728 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 ASSERT(!logerror);
3730 /*
3731 * Force the incore logs to disk before shutting the
3732 * log down completely.
3733 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003734 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3735
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003736 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003738 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 }
3740 /*
3741 * Wake up everybody waiting on xfs_log_force.
3742 * Callback all log item committed functions as if the
3743 * log writes were completed.
3744 */
3745 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3746
3747#ifdef XFSERRORDEBUG
3748 {
3749 xlog_in_core_t *iclog;
3750
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003751 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 iclog = log->l_iclog;
3753 do {
3754 ASSERT(iclog->ic_callback == 0);
3755 iclog = iclog->ic_next;
3756 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003757 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 }
3759#endif
3760 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003761 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762}
3763
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003764STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765xlog_iclogs_empty(xlog_t *log)
3766{
3767 xlog_in_core_t *iclog;
3768
3769 iclog = log->l_iclog;
3770 do {
3771 /* endianness does not matter here, zero is zero in
3772 * any language.
3773 */
3774 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 iclog = iclog->ic_next;
3777 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003778 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779}