blob: cc0504e0bb3b1f5efd4e7667642ab6c5bb722060 [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)) {
Dave Chinnereb40a872010-12-21 12:09:01 +1100550 xlog_wait(&iclog->ic_force_wait,
551 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 } 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
Dave Chinnereb40a872010-12-21 12:09:01 +1100591 xlog_wait(&iclog->ic_force_wait,
592 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 } 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;
Dave Chinnereb40a872010-12-21 12:09:01 +1100703 wake_up(&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;
Dave Chinnereb40a872010-12-21 12:09:01 +1100722 wake_up(&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);
Dave Chinnereb40a872010-12-21 12:09:01 +11001063 init_waitqueue_head(&log->l_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);
Dave Chinnereb40a872010-12-21 12:09:01 +11001119 init_waitqueue_head(&iclog->ic_force_wait);
1120 init_waitqueue_head(&iclog->ic_write_wait);
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;
Dave Chinnereb40a872010-12-21 12:09:01 +11001135 if (iclog->ic_bp)
Dave Chinner644c3562008-11-10 16:50:24 +11001136 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001137 kmem_free(iclog);
1138 }
1139 spinlock_destroy(&log->l_icloglock);
1140 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001141 xfs_buf_free(log->l_xbuf);
1142out_free_log:
1143 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001144out:
1145 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146} /* xlog_alloc_log */
1147
1148
1149/*
1150 * Write out the commit record of a transaction associated with the given
1151 * ticket. Return the lsn of the commit record.
1152 */
1153STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001154xlog_commit_record(
1155 struct log *log,
1156 struct xlog_ticket *ticket,
1157 struct xlog_in_core **iclog,
1158 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Dave Chinner55b66332010-03-23 11:43:17 +11001160 struct xfs_mount *mp = log->l_mp;
1161 int error;
1162 struct xfs_log_iovec reg = {
1163 .i_addr = NULL,
1164 .i_len = 0,
1165 .i_type = XLOG_REG_TYPE_COMMIT,
1166 };
1167 struct xfs_log_vec vec = {
1168 .lv_niovecs = 1,
1169 .lv_iovecp = &reg,
1170 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001173 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1174 XLOG_COMMIT_TRANS);
1175 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001176 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001177 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180/*
1181 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1182 * log space. This code pushes on the lsn which would supposedly free up
1183 * the 25% which we want to leave free. We may need to adopt a policy which
1184 * pushes on an lsn which is further along in the log once we reach the high
1185 * water mark. In this manner, we would be creating a low water mark.
1186 */
David Chinnera8272ce2007-11-23 16:28:09 +11001187STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188xlog_grant_push_ail(xfs_mount_t *mp,
1189 int need_bytes)
1190{
1191 xlog_t *log = mp->m_log; /* pointer to the log */
1192 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1193 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1194 int free_blocks; /* free blocks left to write to */
1195 int free_bytes; /* free bytes left to write to */
1196 int threshold_block; /* block in lsn we'd like to be at */
1197 int threshold_cycle; /* lsn cycle we'd like to be at */
1198 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1201
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001202 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11001203 free_bytes = xlog_space_left(log, &log->l_grant_reserve_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 tail_lsn = log->l_tail_lsn;
1205 free_blocks = BTOBBT(free_bytes);
1206
1207 /*
1208 * Set the threshold for the minimum number of free blocks in the
1209 * log to the maximum of what the caller needs, one quarter of the
1210 * log, and 256 blocks.
1211 */
1212 free_threshold = BTOBB(need_bytes);
1213 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1214 free_threshold = MAX(free_threshold, 256);
1215 if (free_blocks < free_threshold) {
1216 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1217 threshold_cycle = CYCLE_LSN(tail_lsn);
1218 if (threshold_block >= log->l_logBBsize) {
1219 threshold_block -= log->l_logBBsize;
1220 threshold_cycle += 1;
1221 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001222 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /* Don't pass in an lsn greater than the lsn of the last
1225 * log record known to be on disk.
1226 */
1227 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1228 threshold_lsn = log->l_last_sync_lsn;
1229 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001230 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /*
1233 * Get the transaction layer to kick the dirty buffers out to
1234 * disk asynchronously. No point in trying to do this if
1235 * the filesystem is shutting down.
1236 */
1237 if (threshold_lsn &&
1238 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001239 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240} /* xlog_grant_push_ail */
1241
Christoph Hellwig873ff552010-01-13 22:17:57 +00001242/*
1243 * The bdstrat callback function for log bufs. This gives us a central
1244 * place to trap bufs in case we get hit by a log I/O error and need to
1245 * shutdown. Actually, in practice, even when we didn't get a log error,
1246 * we transition the iclogs to IOERROR state *after* flushing all existing
1247 * iclogs to disk. This is because we don't want anymore new transactions to be
1248 * started or completed afterwards.
1249 */
1250STATIC int
1251xlog_bdstrat(
1252 struct xfs_buf *bp)
1253{
1254 struct xlog_in_core *iclog;
1255
1256 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1257 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1258 XFS_BUF_ERROR(bp, EIO);
1259 XFS_BUF_STALE(bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001260 xfs_buf_ioend(bp, 0);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001261 /*
1262 * It would seem logical to return EIO here, but we rely on
1263 * the log state machine to propagate I/O errors instead of
1264 * doing it here.
1265 */
1266 return 0;
1267 }
1268
1269 bp->b_flags |= _XBF_RUN_QUEUES;
1270 xfs_buf_iorequest(bp);
1271 return 0;
1272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274/*
1275 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1276 * fashion. Previously, we should have moved the current iclog
1277 * ptr in the log to point to the next available iclog. This allows further
1278 * write to continue while this code syncs out an iclog ready to go.
1279 * Before an in-core log can be written out, the data section must be scanned
1280 * to save away the 1st word of each BBSIZE block into the header. We replace
1281 * it with the current cycle count. Each BBSIZE block is tagged with the
1282 * cycle count because there in an implicit assumption that drives will
1283 * guarantee that entire 512 byte blocks get written at once. In other words,
1284 * we can't have part of a 512 byte block written and part not written. By
1285 * tagging each block, we will know which blocks are valid when recovering
1286 * after an unclean shutdown.
1287 *
1288 * This routine is single threaded on the iclog. No other thread can be in
1289 * this routine with the same iclog. Changing contents of iclog can there-
1290 * fore be done without grabbing the state machine lock. Updating the global
1291 * log will require grabbing the lock though.
1292 *
1293 * The entire log manager uses a logical block numbering scheme. Only
1294 * log_sync (and then only bwrite()) know about the fact that the log may
1295 * not start with block zero on a given device. The log block start offset
1296 * is added immediately before calling bwrite().
1297 */
1298
David Chinnera8272ce2007-11-23 16:28:09 +11001299STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300xlog_sync(xlog_t *log,
1301 xlog_in_core_t *iclog)
1302{
1303 xfs_caddr_t dptr; /* pointer to byte sized element */
1304 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001305 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 uint count; /* byte count of bwrite */
1307 uint count_init; /* initial count before roundup */
1308 int roundoff; /* roundoff to BB or stripe */
1309 int split = 0; /* split write into two regions */
1310 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001311 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001314 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /* Add for LR header */
1317 count_init = log->l_iclog_hsize + iclog->ic_offset;
1318
1319 /* Round out the log write size */
1320 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1321 /* we have a v2 stripe unit to use */
1322 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1323 } else {
1324 count = BBTOB(BTOBB(count_init));
1325 }
1326 roundoff = count - count_init;
1327 ASSERT(roundoff >= 0);
1328 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1329 roundoff < log->l_mp->m_sb.sb_logsunit)
1330 ||
1331 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1332 roundoff < BBTOB(1)));
1333
1334 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001335 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11001336 xlog_grant_add_space(log, &log->l_grant_reserve_head, roundoff);
1337 xlog_grant_add_space(log, &log->l_grant_write_head, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001338 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* put cycle number in every block */
1341 xlog_pack_data(log, iclog, roundoff);
1342
1343 /* real byte length */
1344 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001345 iclog->ic_header.h_len =
1346 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001348 iclog->ic_header.h_len =
1349 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351
Nathan Scottf5faad72006-07-28 17:04:44 +10001352 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1354 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001355 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1358
1359 /* Do we need to split this write into 2 parts? */
1360 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1361 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1362 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1363 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1364 } else {
1365 iclog->ic_bwritecnt = 1;
1366 }
David Chinner511105b2007-05-24 15:21:57 +10001367 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001369 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 XFS_BUF_BUSY(bp);
1371 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001372 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwig651701d2010-06-28 10:34:34 -04001373
1374 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001375 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1378 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1379
1380 xlog_verify_iclog(log, iclog, count, B_TRUE);
1381
1382 /* account for log which doesn't start at block #0 */
1383 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1384 /*
1385 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1386 * is shutting down.
1387 */
1388 XFS_BUF_WRITE(bp);
1389
Christoph Hellwig873ff552010-01-13 22:17:57 +00001390 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1392 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001393 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001396 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1398 (unsigned long)1);
1399 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1400 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1401 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1402 (__psint_t)count), split);
1403 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001404 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 XFS_BUF_BUSY(bp);
1406 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001407 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001408 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1409 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 dptr = XFS_BUF_PTR(bp);
1411 /*
1412 * Bump the cycle numbers at the start of each block
1413 * since this part of the buffer is at the start of
1414 * a new cycle. Watch out for the header magic number
1415 * case, though.
1416 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001417 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001418 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001419 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001420 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 dptr += BBSIZE;
1422 }
1423
1424 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1425 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1426
Nathan Scottc41564b2006-03-29 08:55:14 +10001427 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1429 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001430 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1432 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001433 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437} /* xlog_sync */
1438
1439
1440/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001441 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 */
David Chinnera8272ce2007-11-23 16:28:09 +11001443STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001444xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 int i;
1448
Dave Chinner71e330b2010-05-21 14:37:18 +10001449 xlog_cil_destroy(log);
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 iclog = log->l_iclog;
1452 for (i=0; i<log->l_iclog_bufs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001455 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 iclog = next_iclog;
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 spinlock_destroy(&log->l_icloglock);
1459 spinlock_destroy(&log->l_grant_lock);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001463 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001464} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466/*
1467 * Update counters atomically now that memcpy is done.
1468 */
1469/* ARGSUSED */
1470static inline void
1471xlog_state_finish_copy(xlog_t *log,
1472 xlog_in_core_t *iclog,
1473 int record_cnt,
1474 int copy_bytes)
1475{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001476 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001478 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 iclog->ic_offset += copy_bytes;
1480
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001481 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482} /* xlog_state_finish_copy */
1483
1484
1485
1486
1487/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001488 * print out info relating to regions written which consume
1489 * the reservation
1490 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001491void
1492xlog_print_tic_res(
1493 struct xfs_mount *mp,
1494 struct xlog_ticket *ticket)
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001495{
1496 uint i;
1497 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1498
1499 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1500 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1501 "bformat",
1502 "bchunk",
1503 "efi_format",
1504 "efd_format",
1505 "iformat",
1506 "icore",
1507 "iext",
1508 "ibroot",
1509 "ilocal",
1510 "iattr_ext",
1511 "iattr_broot",
1512 "iattr_local",
1513 "qformat",
1514 "dquot",
1515 "quotaoff",
1516 "LR header",
1517 "unmount",
1518 "commit",
1519 "trans header"
1520 };
1521 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1522 "SETATTR_NOT_SIZE",
1523 "SETATTR_SIZE",
1524 "INACTIVE",
1525 "CREATE",
1526 "CREATE_TRUNC",
1527 "TRUNCATE_FILE",
1528 "REMOVE",
1529 "LINK",
1530 "RENAME",
1531 "MKDIR",
1532 "RMDIR",
1533 "SYMLINK",
1534 "SET_DMATTRS",
1535 "GROWFS",
1536 "STRAT_WRITE",
1537 "DIOSTRAT",
1538 "WRITE_SYNC",
1539 "WRITEID",
1540 "ADDAFORK",
1541 "ATTRINVAL",
1542 "ATRUNCATE",
1543 "ATTR_SET",
1544 "ATTR_RM",
1545 "ATTR_FLAG",
1546 "CLEAR_AGI_BUCKET",
1547 "QM_SBCHANGE",
1548 "DUMMY1",
1549 "DUMMY2",
1550 "QM_QUOTAOFF",
1551 "QM_DQALLOC",
1552 "QM_SETQLIM",
1553 "QM_DQCLUSTER",
1554 "QM_QINOCREATE",
1555 "QM_QUOTAOFF_END",
1556 "SB_UNIT",
1557 "FSYNC_TS",
1558 "GROWFSRT_ALLOC",
1559 "GROWFSRT_ZERO",
1560 "GROWFSRT_FREE",
1561 "SWAPEXT"
1562 };
1563
1564 xfs_fs_cmn_err(CE_WARN, mp,
1565 "xfs_log_write: reservation summary:\n"
1566 " trans type = %s (%u)\n"
1567 " unit res = %d bytes\n"
1568 " current res = %d bytes\n"
1569 " total reg = %u bytes (o/flow = %u bytes)\n"
1570 " ophdrs = %u (ophdr space = %u bytes)\n"
1571 " ophdr + reg = %u bytes\n"
1572 " num regions = %u\n",
1573 ((ticket->t_trans_type <= 0 ||
1574 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1575 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1576 ticket->t_trans_type,
1577 ticket->t_unit_res,
1578 ticket->t_curr_res,
1579 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1580 ticket->t_res_num_ophdrs, ophdr_spc,
1581 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001582 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001583 ticket->t_res_num);
1584
1585 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001586 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001587 cmn_err(CE_WARN,
1588 "region[%u]: %s - %u bytes\n",
1589 i,
1590 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1591 "bad-rtype" : res_type_str[r_type-1]),
1592 ticket->t_res_arr[i].r_len);
1593 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001594
1595 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1596 "xfs_log_write: reservation ran out. Need to up reservation");
1597 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001598}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001599
1600/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001601 * Calculate the potential space needed by the log vector. Each region gets
1602 * its own xlog_op_header_t and may need to be double word aligned.
1603 */
1604static int
1605xlog_write_calc_vec_length(
1606 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001607 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001608{
Dave Chinner55b66332010-03-23 11:43:17 +11001609 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001610 int headers = 0;
1611 int len = 0;
1612 int i;
1613
1614 /* acct for start rec of xact */
1615 if (ticket->t_flags & XLOG_TIC_INITED)
1616 headers++;
1617
Dave Chinner55b66332010-03-23 11:43:17 +11001618 for (lv = log_vector; lv; lv = lv->lv_next) {
1619 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001620
Dave Chinner55b66332010-03-23 11:43:17 +11001621 for (i = 0; i < lv->lv_niovecs; i++) {
1622 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1623
1624 len += vecp->i_len;
1625 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1626 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001627 }
1628
1629 ticket->t_res_num_ophdrs += headers;
1630 len += headers * sizeof(struct xlog_op_header);
1631
1632 return len;
1633}
1634
1635/*
1636 * If first write for transaction, insert start record We can't be trying to
1637 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1638 */
1639static int
1640xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001641 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001642 struct xlog_ticket *ticket)
1643{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001644 if (!(ticket->t_flags & XLOG_TIC_INITED))
1645 return 0;
1646
1647 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1648 ophdr->oh_clientid = ticket->t_clientid;
1649 ophdr->oh_len = 0;
1650 ophdr->oh_flags = XLOG_START_TRANS;
1651 ophdr->oh_res2 = 0;
1652
1653 ticket->t_flags &= ~XLOG_TIC_INITED;
1654
1655 return sizeof(struct xlog_op_header);
1656}
1657
1658static xlog_op_header_t *
1659xlog_write_setup_ophdr(
1660 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001661 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001662 struct xlog_ticket *ticket,
1663 uint flags)
1664{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001665 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1666 ophdr->oh_clientid = ticket->t_clientid;
1667 ophdr->oh_res2 = 0;
1668
1669 /* are we copying a commit or unmount record? */
1670 ophdr->oh_flags = flags;
1671
1672 /*
1673 * We've seen logs corrupted with bad transaction client ids. This
1674 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1675 * and shut down the filesystem.
1676 */
1677 switch (ophdr->oh_clientid) {
1678 case XFS_TRANSACTION:
1679 case XFS_VOLUME:
1680 case XFS_LOG:
1681 break;
1682 default:
1683 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1684 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1685 ophdr->oh_clientid, ticket);
1686 return NULL;
1687 }
1688
1689 return ophdr;
1690}
1691
1692/*
1693 * Set up the parameters of the region copy into the log. This has
1694 * to handle region write split across multiple log buffers - this
1695 * state is kept external to this function so that this code can
1696 * can be written in an obvious, self documenting manner.
1697 */
1698static int
1699xlog_write_setup_copy(
1700 struct xlog_ticket *ticket,
1701 struct xlog_op_header *ophdr,
1702 int space_available,
1703 int space_required,
1704 int *copy_off,
1705 int *copy_len,
1706 int *last_was_partial_copy,
1707 int *bytes_consumed)
1708{
1709 int still_to_copy;
1710
1711 still_to_copy = space_required - *bytes_consumed;
1712 *copy_off = *bytes_consumed;
1713
1714 if (still_to_copy <= space_available) {
1715 /* write of region completes here */
1716 *copy_len = still_to_copy;
1717 ophdr->oh_len = cpu_to_be32(*copy_len);
1718 if (*last_was_partial_copy)
1719 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1720 *last_was_partial_copy = 0;
1721 *bytes_consumed = 0;
1722 return 0;
1723 }
1724
1725 /* partial write of region, needs extra log op header reservation */
1726 *copy_len = space_available;
1727 ophdr->oh_len = cpu_to_be32(*copy_len);
1728 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1729 if (*last_was_partial_copy)
1730 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1731 *bytes_consumed += *copy_len;
1732 (*last_was_partial_copy)++;
1733
1734 /* account for new log op header */
1735 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1736 ticket->t_res_num_ophdrs++;
1737
1738 return sizeof(struct xlog_op_header);
1739}
1740
1741static int
1742xlog_write_copy_finish(
1743 struct log *log,
1744 struct xlog_in_core *iclog,
1745 uint flags,
1746 int *record_cnt,
1747 int *data_cnt,
1748 int *partial_copy,
1749 int *partial_copy_len,
1750 int log_offset,
1751 struct xlog_in_core **commit_iclog)
1752{
1753 if (*partial_copy) {
1754 /*
1755 * This iclog has already been marked WANT_SYNC by
1756 * xlog_state_get_iclog_space.
1757 */
1758 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1759 *record_cnt = 0;
1760 *data_cnt = 0;
1761 return xlog_state_release_iclog(log, iclog);
1762 }
1763
1764 *partial_copy = 0;
1765 *partial_copy_len = 0;
1766
1767 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1768 /* no more space in this iclog - push it. */
1769 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1770 *record_cnt = 0;
1771 *data_cnt = 0;
1772
1773 spin_lock(&log->l_icloglock);
1774 xlog_state_want_sync(log, iclog);
1775 spin_unlock(&log->l_icloglock);
1776
1777 if (!commit_iclog)
1778 return xlog_state_release_iclog(log, iclog);
1779 ASSERT(flags & XLOG_COMMIT_TRANS);
1780 *commit_iclog = iclog;
1781 }
1782
1783 return 0;
1784}
1785
1786/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 * Write some region out to in-core log
1788 *
1789 * This will be called when writing externally provided regions or when
1790 * writing out a commit record for a given transaction.
1791 *
1792 * General algorithm:
1793 * 1. Find total length of this write. This may include adding to the
1794 * lengths passed in.
1795 * 2. Check whether we violate the tickets reservation.
1796 * 3. While writing to this iclog
1797 * A. Reserve as much space in this iclog as can get
1798 * B. If this is first write, save away start lsn
1799 * C. While writing this region:
1800 * 1. If first write of transaction, write start record
1801 * 2. Write log operation header (header per region)
1802 * 3. Find out if we can fit entire region into this iclog
1803 * 4. Potentially, verify destination memcpy ptr
1804 * 5. Memcpy (partial) region
1805 * 6. If partial copy, release iclog; otherwise, continue
1806 * copying more regions into current iclog
1807 * 4. Mark want sync bit (in simulation mode)
1808 * 5. Release iclog for potential flush to on-disk log.
1809 *
1810 * ERRORS:
1811 * 1. Panic if reservation is overrun. This should never happen since
1812 * reservation amounts are generated internal to the filesystem.
1813 * NOTES:
1814 * 1. Tickets are single threaded data structures.
1815 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1816 * syncing routine. When a single log_write region needs to span
1817 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1818 * on all log operation writes which don't contain the end of the
1819 * region. The XLOG_END_TRANS bit is used for the in-core log
1820 * operation which contains the end of the continued log_write region.
1821 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1822 * we don't really know exactly how much space will be used. As a result,
1823 * we don't update ic_offset until the end when we know exactly how many
1824 * bytes have been written out.
1825 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001826int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001827xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001828 struct log *log,
1829 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001830 struct xlog_ticket *ticket,
1831 xfs_lsn_t *start_lsn,
1832 struct xlog_in_core **commit_iclog,
1833 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001835 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001836 struct xfs_log_iovec *vecp;
1837 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001838 int len;
1839 int index;
1840 int partial_copy = 0;
1841 int partial_copy_len = 0;
1842 int contwr = 0;
1843 int record_cnt = 0;
1844 int data_cnt = 0;
1845 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001847 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Dave Chinner55b66332010-03-23 11:43:17 +11001849 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner71e330b2010-05-21 14:37:18 +10001850 if (log->l_cilp) {
1851 /*
1852 * Region headers and bytes are already accounted for.
1853 * We only need to take into account start records and
1854 * split regions in this function.
1855 */
1856 if (ticket->t_flags & XLOG_TIC_INITED)
1857 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1858
1859 /*
1860 * Commit record headers need to be accounted for. These
1861 * come in as separate writes so are easy to detect.
1862 */
1863 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
1864 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1865 } else
1866 ticket->t_curr_res -= len;
1867
1868 if (ticket->t_curr_res < 0)
Dave Chinner55b66332010-03-23 11:43:17 +11001869 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Dave Chinner55b66332010-03-23 11:43:17 +11001871 index = 0;
1872 lv = log_vector;
1873 vecp = lv->lv_iovecp;
1874 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001875 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001876 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001878 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1879 &contwr, &log_offset);
1880 if (error)
1881 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001883 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001884 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001886 /* start_lsn is the first lsn written to. That's all we need. */
1887 if (!*start_lsn)
1888 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001890 /*
1891 * This loop writes out as many regions as can fit in the amount
1892 * of space which was allocated by xlog_state_get_iclog_space().
1893 */
Dave Chinner55b66332010-03-23 11:43:17 +11001894 while (lv && index < lv->lv_niovecs) {
1895 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001896 struct xlog_op_header *ophdr;
1897 int start_rec_copy;
1898 int copy_len;
1899 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Dave Chinner55b66332010-03-23 11:43:17 +11001901 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001902 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001904 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1905 if (start_rec_copy) {
1906 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001907 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001908 start_rec_copy);
1909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001911 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1912 if (!ophdr)
1913 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001915 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001916 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001918 len += xlog_write_setup_copy(ticket, ophdr,
1919 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001920 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001921 &copy_off, &copy_len,
1922 &partial_copy,
1923 &partial_copy_len);
1924 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001925
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001926 /* copy region */
1927 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001928 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1929 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001930
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001931 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1932 record_cnt++;
1933 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001935 error = xlog_write_copy_finish(log, iclog, flags,
1936 &record_cnt, &data_cnt,
1937 &partial_copy,
1938 &partial_copy_len,
1939 log_offset,
1940 commit_iclog);
1941 if (error)
1942 return error;
1943
1944 /*
1945 * if we had a partial copy, we need to get more iclog
1946 * space but we don't want to increment the region
1947 * index because there is still more is this region to
1948 * write.
1949 *
1950 * If we completed writing this region, and we flushed
1951 * the iclog (indicated by resetting of the record
1952 * count), then we also need to get more log space. If
1953 * this was the last record, though, we are done and
1954 * can just return.
1955 */
1956 if (partial_copy)
1957 break;
1958
Dave Chinner55b66332010-03-23 11:43:17 +11001959 if (++index == lv->lv_niovecs) {
1960 lv = lv->lv_next;
1961 index = 0;
1962 if (lv)
1963 vecp = lv->lv_iovecp;
1964 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001965 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11001966 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001967 return 0;
1968 break;
1969 }
1970 }
1971 }
1972
1973 ASSERT(len == 0);
1974
1975 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1976 if (!commit_iclog)
1977 return xlog_state_release_iclog(log, iclog);
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 ASSERT(flags & XLOG_COMMIT_TRANS);
1980 *commit_iclog = iclog;
1981 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001982}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984
1985/*****************************************************************************
1986 *
1987 * State Machine functions
1988 *
1989 *****************************************************************************
1990 */
1991
1992/* Clean iclogs starting from the head. This ordering must be
1993 * maintained, so an iclog doesn't become ACTIVE beyond one that
1994 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10001995 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 * iclog is trying to sync to disk.
1997 *
1998 * State Change: DIRTY -> ACTIVE
1999 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002000STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001xlog_state_clean_log(xlog_t *log)
2002{
2003 xlog_in_core_t *iclog;
2004 int changed = 0;
2005
2006 iclog = log->l_iclog;
2007 do {
2008 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2009 iclog->ic_state = XLOG_STATE_ACTIVE;
2010 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002011 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /*
2013 * If the number of ops in this iclog indicate it just
2014 * contains the dummy transaction, we can
2015 * change state into IDLE (the second time around).
2016 * Otherwise we should change the state into
2017 * NEED a dummy.
2018 * We don't need to cover the dummy.
2019 */
2020 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002021 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2022 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 changed = 1;
2024 } else {
2025 /*
2026 * We have two dirty iclogs so start over
2027 * This could also be num of ops indicates
2028 * this is not the dummy going out.
2029 */
2030 changed = 2;
2031 }
2032 iclog->ic_header.h_num_logops = 0;
2033 memset(iclog->ic_header.h_cycle_data, 0,
2034 sizeof(iclog->ic_header.h_cycle_data));
2035 iclog->ic_header.h_lsn = 0;
2036 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2037 /* do nothing */;
2038 else
2039 break; /* stop cleaning */
2040 iclog = iclog->ic_next;
2041 } while (iclog != log->l_iclog);
2042
2043 /* log is locked when we are called */
2044 /*
2045 * Change state for the dummy log recording.
2046 * We usually go to NEED. But we go to NEED2 if the changed indicates
2047 * we are done writing the dummy record.
2048 * If we are done with the second dummy recored (DONE2), then
2049 * we go to IDLE.
2050 */
2051 if (changed) {
2052 switch (log->l_covered_state) {
2053 case XLOG_STATE_COVER_IDLE:
2054 case XLOG_STATE_COVER_NEED:
2055 case XLOG_STATE_COVER_NEED2:
2056 log->l_covered_state = XLOG_STATE_COVER_NEED;
2057 break;
2058
2059 case XLOG_STATE_COVER_DONE:
2060 if (changed == 1)
2061 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2062 else
2063 log->l_covered_state = XLOG_STATE_COVER_NEED;
2064 break;
2065
2066 case XLOG_STATE_COVER_DONE2:
2067 if (changed == 1)
2068 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2069 else
2070 log->l_covered_state = XLOG_STATE_COVER_NEED;
2071 break;
2072
2073 default:
2074 ASSERT(0);
2075 }
2076 }
2077} /* xlog_state_clean_log */
2078
2079STATIC xfs_lsn_t
2080xlog_get_lowest_lsn(
2081 xlog_t *log)
2082{
2083 xlog_in_core_t *lsn_log;
2084 xfs_lsn_t lowest_lsn, lsn;
2085
2086 lsn_log = log->l_iclog;
2087 lowest_lsn = 0;
2088 do {
2089 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002090 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if ((lsn && !lowest_lsn) ||
2092 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2093 lowest_lsn = lsn;
2094 }
2095 }
2096 lsn_log = lsn_log->ic_next;
2097 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002098 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
2101
2102STATIC void
2103xlog_state_do_callback(
2104 xlog_t *log,
2105 int aborted,
2106 xlog_in_core_t *ciclog)
2107{
2108 xlog_in_core_t *iclog;
2109 xlog_in_core_t *first_iclog; /* used to know when we've
2110 * processed all iclogs once */
2111 xfs_log_callback_t *cb, *cb_next;
2112 int flushcnt = 0;
2113 xfs_lsn_t lowest_lsn;
2114 int ioerrors; /* counter: iclogs with errors */
2115 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2116 int funcdidcallbacks; /* flag: function did callbacks */
2117 int repeats; /* for issuing console warnings if
2118 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002119 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002121 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 first_iclog = iclog = log->l_iclog;
2123 ioerrors = 0;
2124 funcdidcallbacks = 0;
2125 repeats = 0;
2126
2127 do {
2128 /*
2129 * Scan all iclogs starting with the one pointed to by the
2130 * log. Reset this starting point each time the log is
2131 * unlocked (during callbacks).
2132 *
2133 * Keep looping through iclogs until one full pass is made
2134 * without running any callbacks.
2135 */
2136 first_iclog = log->l_iclog;
2137 iclog = log->l_iclog;
2138 loopdidcallbacks = 0;
2139 repeats++;
2140
2141 do {
2142
2143 /* skip all iclogs in the ACTIVE & DIRTY states */
2144 if (iclog->ic_state &
2145 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2146 iclog = iclog->ic_next;
2147 continue;
2148 }
2149
2150 /*
2151 * Between marking a filesystem SHUTDOWN and stopping
2152 * the log, we do flush all iclogs to disk (if there
2153 * wasn't a log I/O error). So, we do want things to
2154 * go smoothly in case of just a SHUTDOWN w/o a
2155 * LOG_IO_ERROR.
2156 */
2157 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2158 /*
2159 * Can only perform callbacks in order. Since
2160 * this iclog is not in the DONE_SYNC/
2161 * DO_CALLBACK state, we skip the rest and
2162 * just try to clean up. If we set our iclog
2163 * to DO_CALLBACK, we will not process it when
2164 * we retry since a previous iclog is in the
2165 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002166 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 */
2168 if (!(iclog->ic_state &
2169 (XLOG_STATE_DONE_SYNC |
2170 XLOG_STATE_DO_CALLBACK))) {
2171 if (ciclog && (ciclog->ic_state ==
2172 XLOG_STATE_DONE_SYNC)) {
2173 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2174 }
2175 break;
2176 }
2177 /*
2178 * We now have an iclog that is in either the
2179 * DO_CALLBACK or DONE_SYNC states. The other
2180 * states (WANT_SYNC, SYNCING, or CALLBACK were
2181 * caught by the above if and are going to
2182 * clean (i.e. we aren't doing their callbacks)
2183 * see the above if.
2184 */
2185
2186 /*
2187 * We will do one more check here to see if we
2188 * have chased our tail around.
2189 */
2190
2191 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002192 if (lowest_lsn &&
2193 XFS_LSN_CMP(lowest_lsn,
2194 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 iclog = iclog->ic_next;
2196 continue; /* Leave this iclog for
2197 * another thread */
2198 }
2199
2200 iclog->ic_state = XLOG_STATE_CALLBACK;
2201
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002202 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002205 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 * No one else can be here except us.
2207 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002208 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002209 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2210 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2211 log->l_last_sync_lsn =
2212 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002213 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002216 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 ioerrors++;
2218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
David Chinner114d23a2008-04-10 12:18:39 +10002220 /*
2221 * Keep processing entries in the callback list until
2222 * we come around and it is empty. We need to
2223 * atomically see that the list is empty and change the
2224 * state to DIRTY so that we don't miss any more
2225 * callbacks being added.
2226 */
2227 spin_lock(&iclog->ic_callback_lock);
2228 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002229 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 iclog->ic_callback_tail = &(iclog->ic_callback);
2231 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002232 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002235 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 cb_next = cb->cb_next;
2237 cb->cb_func(cb->cb_arg, aborted);
2238 }
David Chinner114d23a2008-04-10 12:18:39 +10002239 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 cb = iclog->ic_callback;
2241 }
2242
2243 loopdidcallbacks++;
2244 funcdidcallbacks++;
2245
David Chinner114d23a2008-04-10 12:18:39 +10002246 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002247 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002248 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2250 iclog->ic_state = XLOG_STATE_DIRTY;
2251
2252 /*
2253 * Transition from DIRTY to ACTIVE if applicable.
2254 * NOP if STATE_IOERROR.
2255 */
2256 xlog_state_clean_log(log);
2257
2258 /* wake up threads waiting in xfs_log_force() */
Dave Chinnereb40a872010-12-21 12:09:01 +11002259 wake_up_all(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 iclog = iclog->ic_next;
2262 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002263
2264 if (repeats > 5000) {
2265 flushcnt += repeats;
2266 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002268 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002269 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271 } while (!ioerrors && loopdidcallbacks);
2272
2273 /*
2274 * make one last gasp attempt to see if iclogs are being left in
2275 * limbo..
2276 */
2277#ifdef DEBUG
2278 if (funcdidcallbacks) {
2279 first_iclog = iclog = log->l_iclog;
2280 do {
2281 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2282 /*
2283 * Terminate the loop if iclogs are found in states
2284 * which will cause other threads to clean up iclogs.
2285 *
2286 * SYNCING - i/o completion will go through logs
2287 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002288 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 * IOERROR - give up hope all ye who enter here
2290 */
2291 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2292 iclog->ic_state == XLOG_STATE_SYNCING ||
2293 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2294 iclog->ic_state == XLOG_STATE_IOERROR )
2295 break;
2296 iclog = iclog->ic_next;
2297 } while (first_iclog != iclog);
2298 }
2299#endif
2300
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002301 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2302 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002303 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002304
2305 if (wake)
Dave Chinnereb40a872010-12-21 12:09:01 +11002306 wake_up_all(&log->l_flush_wait);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002307}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309
2310/*
2311 * Finish transitioning this iclog to the dirty state.
2312 *
2313 * Make sure that we completely execute this routine only when this is
2314 * the last call to the iclog. There is a good chance that iclog flushes,
2315 * when we reach the end of the physical log, get turned into 2 separate
2316 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2317 * routine. By using the reference count bwritecnt, we guarantee that only
2318 * the second completion goes through.
2319 *
2320 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002321 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 */
David Chinnera8272ce2007-11-23 16:28:09 +11002323STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324xlog_state_done_syncing(
2325 xlog_in_core_t *iclog,
2326 int aborted)
2327{
2328 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002330 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2333 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002334 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2336
2337
2338 /*
2339 * If we got an error, either on the first buffer, or in the case of
2340 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2341 * and none should ever be attempted to be written to disk
2342 * again.
2343 */
2344 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2345 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002346 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 return;
2348 }
2349 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2350 }
2351
2352 /*
2353 * Someone could be sleeping prior to writing out the next
2354 * iclog buffer, we wake them all, one will get to do the
2355 * I/O, the others get to wait for the result.
2356 */
Dave Chinnereb40a872010-12-21 12:09:01 +11002357 wake_up_all(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002358 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2360} /* xlog_state_done_syncing */
2361
2362
2363/*
2364 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002365 * sleep. We wait on the flush queue on the head iclog as that should be
2366 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2367 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 *
2369 * The in-core logs are used in a circular fashion. They are not used
2370 * out-of-order even when an iclog past the head is free.
2371 *
2372 * return:
2373 * * log_offset where xlog_write() can start writing into the in-core
2374 * log's data space.
2375 * * in-core log pointer to which xlog_write() should write.
2376 * * boolean indicating this is a continued write to an in-core log.
2377 * If this is the last write, then the in-core log's offset field
2378 * needs to be incremented, depending on the amount of data which
2379 * is copied.
2380 */
David Chinnera8272ce2007-11-23 16:28:09 +11002381STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382xlog_state_get_iclog_space(xlog_t *log,
2383 int len,
2384 xlog_in_core_t **iclogp,
2385 xlog_ticket_t *ticket,
2386 int *continued_write,
2387 int *logoffsetp)
2388{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 int log_offset;
2390 xlog_rec_header_t *head;
2391 xlog_in_core_t *iclog;
2392 int error;
2393
2394restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002395 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002397 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return XFS_ERROR(EIO);
2399 }
2400
2401 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002402 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002404
2405 /* Wait for log writes to have flushed */
Dave Chinnereb40a872010-12-21 12:09:01 +11002406 xlog_wait(&log->l_flush_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 goto restart;
2408 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 head = &iclog->ic_header;
2411
David Chinner155cc6b2008-03-06 13:44:14 +11002412 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 log_offset = iclog->ic_offset;
2414
2415 /* On the 1st write to an iclog, figure out lsn. This works
2416 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2417 * committing to. If the offset is set, that's how many blocks
2418 * must be written.
2419 */
2420 if (log_offset == 0) {
2421 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002422 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002423 log->l_iclog_hsize,
2424 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002425 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2426 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002427 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 ASSERT(log->l_curr_block >= 0);
2429 }
2430
2431 /* If there is enough room to write everything, then do it. Otherwise,
2432 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2433 * bit is on, so this will get flushed out. Don't update ic_offset
2434 * until you know exactly how many bytes get copied. Therefore, wait
2435 * until later to update ic_offset.
2436 *
2437 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2438 * can fit into remaining data section.
2439 */
2440 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2441 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2442
Dave Chinner49641f12008-07-11 17:43:55 +10002443 /*
2444 * If I'm the only one writing to this iclog, sync it to disk.
2445 * We need to do an atomic compare and decrement here to avoid
2446 * racing with concurrent atomic_dec_and_lock() calls in
2447 * xlog_state_release_iclog() when there is more than one
2448 * reference to the iclog.
2449 */
2450 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2451 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002452 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002453 error = xlog_state_release_iclog(log, iclog);
2454 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002455 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002457 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459 goto restart;
2460 }
2461
2462 /* Do we have enough room to write the full amount in the remainder
2463 * of this iclog? Or must we continue a write on the next iclog and
2464 * mark this iclog as completely taken? In the case where we switch
2465 * iclogs (to mark it taken), this particular iclog will release/sync
2466 * to disk in xlog_write().
2467 */
2468 if (len <= iclog->ic_size - iclog->ic_offset) {
2469 *continued_write = 0;
2470 iclog->ic_offset += len;
2471 } else {
2472 *continued_write = 1;
2473 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2474 }
2475 *iclogp = iclog;
2476
2477 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002478 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 *logoffsetp = log_offset;
2481 return 0;
2482} /* xlog_state_get_iclog_space */
2483
2484/*
2485 * Atomically get the log space required for a log ticket.
2486 *
2487 * Once a ticket gets put onto the reserveq, it will only return after
2488 * the needed reservation is satisfied.
2489 */
2490STATIC int
2491xlog_grant_log_space(xlog_t *log,
2492 xlog_ticket_t *tic)
2493{
2494 int free_bytes;
2495 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497#ifdef DEBUG
2498 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2499 panic("grant Recovery problem");
2500#endif
2501
2502 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002503 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002504
2505 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /* something is already sleeping; insert new transaction at end */
Dave Chinner10547942010-12-21 12:02:25 +11002508 if (!list_empty(&log->l_reserveq)) {
2509 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002510
2511 trace_xfs_log_grant_sleep1(log, tic);
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 /*
2514 * Gotta check this before going to sleep, while we're
2515 * holding the grant lock.
2516 */
2517 if (XLOG_FORCED_SHUTDOWN(log))
2518 goto error_return;
2519
2520 XFS_STATS_INC(xs_sleep_logspace);
Dave Chinnereb40a872010-12-21 12:09:01 +11002521 xlog_wait(&tic->t_wait, &log->l_grant_lock);
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 /*
2524 * If we got an error, and the filesystem is shutting down,
2525 * we'll catch it down below. So just continue...
2526 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002527 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002528 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
2530 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2531 need_bytes = tic->t_unit_res*tic->t_ocnt;
2532 else
2533 need_bytes = tic->t_unit_res;
2534
2535redo:
2536 if (XLOG_FORCED_SHUTDOWN(log))
2537 goto error_return;
2538
Dave Chinnera69ed032010-12-21 12:08:20 +11002539 free_bytes = xlog_space_left(log, &log->l_grant_reserve_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002541 if (list_empty(&tic->t_queue))
2542 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002543
2544 trace_xfs_log_grant_sleep2(log, tic);
2545
Dave Chinner9d7fef72009-04-06 18:42:59 +02002546 spin_unlock(&log->l_grant_lock);
2547 xlog_grant_push_ail(log->l_mp, need_bytes);
2548 spin_lock(&log->l_grant_lock);
2549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 XFS_STATS_INC(xs_sleep_logspace);
Dave Chinnereb40a872010-12-21 12:09:01 +11002551 xlog_wait(&tic->t_wait, &log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Dave Chinner9d7fef72009-04-06 18:42:59 +02002553 spin_lock(&log->l_grant_lock);
2554 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002557 trace_xfs_log_grant_wake2(log, tic);
2558
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002560 }
2561
2562 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564 /* we've got enough space */
Dave Chinnera69ed032010-12-21 12:08:20 +11002565 xlog_grant_add_space(log, &log->l_grant_reserve_head, need_bytes);
2566 xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002567 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 xlog_verify_grant_head(log, 1);
Dave Chinner3f336c62010-12-21 12:02:52 +11002569 xlog_verify_grant_tail(log);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002570 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return 0;
2572
2573 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002574 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002575 trace_xfs_log_grant_error(log, tic);
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 /*
2578 * If we are failing, make sure the ticket doesn't have any
2579 * current reservations. We don't want to add this back when
2580 * the ticket/transaction gets cancelled.
2581 */
2582 tic->t_curr_res = 0;
2583 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002584 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 return XFS_ERROR(EIO);
2586} /* xlog_grant_log_space */
2587
2588
2589/*
2590 * Replenish the byte reservation required by moving the grant write head.
2591 *
2592 *
2593 */
2594STATIC int
2595xlog_regrant_write_log_space(xlog_t *log,
2596 xlog_ticket_t *tic)
2597{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 int free_bytes, need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002601 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606#ifdef DEBUG
2607 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2608 panic("regrant Recovery problem");
2609#endif
2610
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002611 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002612
2613 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
2615 if (XLOG_FORCED_SHUTDOWN(log))
2616 goto error_return;
2617
2618 /* If there are other waiters on the queue then give them a
2619 * chance at logspace before us. Wake up the first waiters,
2620 * if we do not wake up all the waiters then go to sleep waiting
2621 * for more free space, otherwise try to get some space for
2622 * this transaction.
2623 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002624 need_bytes = tic->t_unit_res;
Dave Chinner10547942010-12-21 12:02:25 +11002625 if (!list_empty(&log->l_writeq)) {
2626 struct xlog_ticket *ntic;
Dave Chinnera69ed032010-12-21 12:08:20 +11002627 free_bytes = xlog_space_left(log, &log->l_grant_write_head);
Dave Chinner10547942010-12-21 12:02:25 +11002628 list_for_each_entry(ntic, &log->l_writeq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2630
2631 if (free_bytes < ntic->t_unit_res)
2632 break;
2633 free_bytes -= ntic->t_unit_res;
Dave Chinnereb40a872010-12-21 12:09:01 +11002634 wake_up(&ntic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +11002635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Dave Chinner10547942010-12-21 12:02:25 +11002637 if (ntic != list_first_entry(&log->l_writeq,
2638 struct xlog_ticket, t_queue)) {
2639 if (list_empty(&tic->t_queue))
2640 list_add_tail(&tic->t_queue, &log->l_writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002642 trace_xfs_log_regrant_write_sleep1(log, tic);
2643
Dave Chinner9d7fef72009-04-06 18:42:59 +02002644 spin_unlock(&log->l_grant_lock);
2645 xlog_grant_push_ail(log->l_mp, need_bytes);
2646 spin_lock(&log->l_grant_lock);
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 XFS_STATS_INC(xs_sleep_logspace);
Dave Chinnereb40a872010-12-21 12:09:01 +11002649 xlog_wait(&tic->t_wait, &log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 /* If we're shutting down, this tic is already
2652 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002653 spin_lock(&log->l_grant_lock);
2654 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002657 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659 }
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661redo:
2662 if (XLOG_FORCED_SHUTDOWN(log))
2663 goto error_return;
2664
Dave Chinnera69ed032010-12-21 12:08:20 +11002665 free_bytes = xlog_space_left(log, &log->l_grant_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002667 if (list_empty(&tic->t_queue))
2668 list_add_tail(&tic->t_queue, &log->l_writeq);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002669 spin_unlock(&log->l_grant_lock);
2670 xlog_grant_push_ail(log->l_mp, need_bytes);
2671 spin_lock(&log->l_grant_lock);
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002674 trace_xfs_log_regrant_write_sleep2(log, tic);
Dave Chinnereb40a872010-12-21 12:09:01 +11002675 xlog_wait(&tic->t_wait, &log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002678 spin_lock(&log->l_grant_lock);
2679 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002682 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002684 }
2685
2686 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002688 /* we've got enough space */
Dave Chinnera69ed032010-12-21 12:08:20 +11002689 xlog_grant_add_space(log, &log->l_grant_write_head, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002690 trace_xfs_log_regrant_write_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 xlog_verify_grant_head(log, 1);
Dave Chinner3f336c62010-12-21 12:02:52 +11002692 xlog_verify_grant_tail(log);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002693 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696
2697 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002698 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002699 trace_xfs_log_regrant_write_error(log, tic);
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 /*
2702 * If we are failing, make sure the ticket doesn't have any
2703 * current reservations. We don't want to add this back when
2704 * the ticket/transaction gets cancelled.
2705 */
2706 tic->t_curr_res = 0;
2707 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002708 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 return XFS_ERROR(EIO);
2710} /* xlog_regrant_write_log_space */
2711
2712
2713/* The first cnt-1 times through here we don't need to
2714 * move the grant write head because the permanent
2715 * reservation has reserved cnt times the unit amount.
2716 * Release part of current permanent unit reservation and
2717 * reset current reservation to be one units worth. Also
2718 * move grant reservation head forward.
2719 */
2720STATIC void
2721xlog_regrant_reserve_log_space(xlog_t *log,
2722 xlog_ticket_t *ticket)
2723{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002724 trace_xfs_log_regrant_reserve_enter(log, ticket);
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (ticket->t_cnt > 0)
2727 ticket->t_cnt--;
2728
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002729 spin_lock(&log->l_grant_lock);
Dave Chinnera69ed032010-12-21 12:08:20 +11002730 xlog_grant_sub_space(log, &log->l_grant_reserve_head,
2731 ticket->t_curr_res);
2732 xlog_grant_sub_space(log, &log->l_grant_write_head,
2733 ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002735 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002736
2737 trace_xfs_log_regrant_reserve_sub(log, ticket);
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 xlog_verify_grant_head(log, 1);
2740
2741 /* just return if we still have some of the pre-reserved space */
2742 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002743 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return;
2745 }
2746
Dave Chinnera69ed032010-12-21 12:08:20 +11002747 xlog_grant_add_space(log, &log->l_grant_reserve_head,
2748 ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002749
2750 trace_xfs_log_regrant_reserve_exit(log, ticket);
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002753 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002755 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756} /* xlog_regrant_reserve_log_space */
2757
2758
2759/*
2760 * Give back the space left from a reservation.
2761 *
2762 * All the information we need to make a correct determination of space left
2763 * is present. For non-permanent reservations, things are quite easy. The
2764 * count should have been decremented to zero. We only need to deal with the
2765 * space remaining in the current reservation part of the ticket. If the
2766 * ticket contains a permanent reservation, there may be left over space which
2767 * needs to be released. A count of N means that N-1 refills of the current
2768 * reservation can be done before we need to ask for more space. The first
2769 * one goes to fill up the first current reservation. Once we run out of
2770 * space, the count will stay at zero and the only space remaining will be
2771 * in the current reservation field.
2772 */
2773STATIC void
2774xlog_ungrant_log_space(xlog_t *log,
2775 xlog_ticket_t *ticket)
2776{
Dave Chinner663e4962010-12-21 12:06:05 +11002777 int bytes;
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (ticket->t_cnt > 0)
2780 ticket->t_cnt--;
2781
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002782 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002783 trace_xfs_log_ungrant_enter(log, ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002784 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Dave Chinner663e4962010-12-21 12:06:05 +11002786 /*
2787 * If this is a permanent reservation ticket, we may be able to free
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 * up more space based on the remaining count.
2789 */
Dave Chinner663e4962010-12-21 12:06:05 +11002790 bytes = ticket->t_curr_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (ticket->t_cnt > 0) {
2792 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Dave Chinner663e4962010-12-21 12:06:05 +11002793 bytes += ticket->t_unit_res*ticket->t_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 }
2795
Dave Chinnera69ed032010-12-21 12:08:20 +11002796 xlog_grant_sub_space(log, &log->l_grant_reserve_head, bytes);
2797 xlog_grant_sub_space(log, &log->l_grant_write_head, bytes);
Dave Chinner663e4962010-12-21 12:06:05 +11002798
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002799 trace_xfs_log_ungrant_exit(log, ticket);
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002802 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 xfs_log_move_tail(log->l_mp, 1);
2804} /* xlog_ungrant_log_space */
2805
2806
2807/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 * Flush iclog to disk if this is the last reference to the given iclog and
2809 * the WANT_SYNC bit is set.
2810 *
2811 * When this function is entered, the iclog is not necessarily in the
2812 * WANT_SYNC state. It may be sitting around waiting to get filled.
2813 *
2814 *
2815 */
David Chinnera8272ce2007-11-23 16:28:09 +11002816STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002817xlog_state_release_iclog(
2818 xlog_t *log,
2819 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 int sync = 0; /* do we sync? */
2822
David Chinner155cc6b2008-03-06 13:44:14 +11002823 if (iclog->ic_state & XLOG_STATE_IOERROR)
2824 return XFS_ERROR(EIO);
2825
2826 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2827 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2828 return 0;
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002831 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return XFS_ERROR(EIO);
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2835 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2836
David Chinner155cc6b2008-03-06 13:44:14 +11002837 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002838 /* update tail before writing to iclog */
2839 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 sync++;
2841 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002842 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2844 /* cycle incremented when incrementing curr_block */
2845 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002846 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 /*
2849 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002850 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2852 * this iclog has consistent data, so we ignore IOERROR
2853 * flags after this point.
2854 */
David Chinnerb5893342008-03-06 13:44:06 +11002855 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858} /* xlog_state_release_iclog */
2859
2860
2861/*
2862 * This routine will mark the current iclog in the ring as WANT_SYNC
2863 * and move the current iclog pointer to the next iclog in the ring.
2864 * When this routine is called from xlog_state_get_iclog_space(), the
2865 * exact size of the iclog has not yet been determined. All we know is
2866 * that every data block. We have run out of space in this log record.
2867 */
2868STATIC void
2869xlog_state_switch_iclogs(xlog_t *log,
2870 xlog_in_core_t *iclog,
2871 int eventual_size)
2872{
2873 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2874 if (!eventual_size)
2875 eventual_size = iclog->ic_offset;
2876 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002877 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 log->l_prev_block = log->l_curr_block;
2879 log->l_prev_cycle = log->l_curr_cycle;
2880
2881 /* roll log?: ic_offset changed later */
2882 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2883
2884 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002885 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 log->l_mp->m_sb.sb_logsunit > 1) {
2887 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2888 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2889 }
2890
2891 if (log->l_curr_block >= log->l_logBBsize) {
2892 log->l_curr_cycle++;
2893 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2894 log->l_curr_cycle++;
2895 log->l_curr_block -= log->l_logBBsize;
2896 ASSERT(log->l_curr_block >= 0);
2897 }
2898 ASSERT(iclog == log->l_iclog);
2899 log->l_iclog = iclog->ic_next;
2900} /* xlog_state_switch_iclogs */
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902/*
2903 * Write out all data in the in-core log as of this exact moment in time.
2904 *
2905 * Data may be written to the in-core log during this call. However,
2906 * we don't guarantee this data will be written out. A change from past
2907 * implementation means this routine will *not* write out zero length LRs.
2908 *
2909 * Basically, we try and perform an intelligent scan of the in-core logs.
2910 * If we determine there is no flushable data, we just return. There is no
2911 * flushable data if:
2912 *
2913 * 1. the current iclog is active and has no data; the previous iclog
2914 * is in the active or dirty state.
2915 * 2. the current iclog is drity, and the previous iclog is in the
2916 * active or dirty state.
2917 *
David Chinner12017fa2008-08-13 16:34:31 +10002918 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 *
2920 * 1. the current iclog is not in the active nor dirty state.
2921 * 2. the current iclog dirty, and the previous iclog is not in the
2922 * active nor dirty state.
2923 * 3. the current iclog is active, and there is another thread writing
2924 * to this particular iclog.
2925 * 4. a) the current iclog is active and has no other writers
2926 * b) when we return from flushing out this iclog, it is still
2927 * not in the active nor dirty state.
2928 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002929int
2930_xfs_log_force(
2931 struct xfs_mount *mp,
2932 uint flags,
2933 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002935 struct log *log = mp->m_log;
2936 struct xlog_in_core *iclog;
2937 xfs_lsn_t lsn;
2938
2939 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Dave Chinnera44f13e2010-08-24 11:40:03 +10002941 if (log->l_cilp)
2942 xlog_cil_force(log);
Dave Chinner71e330b2010-05-21 14:37:18 +10002943
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002944 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 iclog = log->l_iclog;
2947 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002948 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return XFS_ERROR(EIO);
2950 }
2951
2952 /* If the head iclog is not active nor dirty, we just attach
2953 * ourselves to the head and go to sleep.
2954 */
2955 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2956 iclog->ic_state == XLOG_STATE_DIRTY) {
2957 /*
2958 * If the head is dirty or (active and empty), then
2959 * we need to look at the previous iclog. If the previous
2960 * iclog is active or dirty we are done. There is nothing
2961 * to sync out. Otherwise, we attach ourselves to the
2962 * previous iclog and go to sleep.
2963 */
2964 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002965 (atomic_read(&iclog->ic_refcnt) == 0
2966 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 iclog = iclog->ic_prev;
2968 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2969 iclog->ic_state == XLOG_STATE_DIRTY)
2970 goto no_sleep;
2971 else
2972 goto maybe_sleep;
2973 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11002974 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 /* We are the only one with access to this
2976 * iclog. Flush it out now. There should
2977 * be a roundoff of zero to show that someone
2978 * has already taken care of the roundoff from
2979 * the previous sync.
2980 */
David Chinner155cc6b2008-03-06 13:44:14 +11002981 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002982 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002984 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 if (xlog_state_release_iclog(log, iclog))
2987 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002988
2989 if (log_flushed)
2990 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002991 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002992 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 iclog->ic_state != XLOG_STATE_DIRTY)
2994 goto maybe_sleep;
2995 else
2996 goto no_sleep;
2997 } else {
2998 /* Someone else is writing to this iclog.
2999 * Use its call to flush out the data. However,
3000 * the other thread may not force out this LR,
3001 * so we mark it WANT_SYNC.
3002 */
3003 xlog_state_switch_iclogs(log, iclog, 0);
3004 goto maybe_sleep;
3005 }
3006 }
3007 }
3008
3009 /* By the time we come around again, the iclog could've been filled
3010 * which would give it another lsn. If we have a new lsn, just
3011 * return because the relevant data has been flushed.
3012 */
3013maybe_sleep:
3014 if (flags & XFS_LOG_SYNC) {
3015 /*
3016 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003017 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 * Then we check again after waking up, in case our
3019 * sleep was disturbed by a bad news.
3020 */
3021 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003022 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return XFS_ERROR(EIO);
3024 }
3025 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11003026 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 /*
3028 * No need to grab the log lock here since we're
3029 * only deciding whether or not to return EIO
3030 * and the memory read should be atomic.
3031 */
3032 if (iclog->ic_state & XLOG_STATE_IOERROR)
3033 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003034 if (log_flushed)
3035 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 } else {
3037
3038no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003039 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 }
3041 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003045 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3046 * about errors or whether the log was flushed or not. This is the normal
3047 * interface to use when trying to unpin items or move the log forward.
3048 */
3049void
3050xfs_log_force(
3051 xfs_mount_t *mp,
3052 uint flags)
3053{
3054 int error;
3055
3056 error = _xfs_log_force(mp, flags, NULL);
3057 if (error) {
3058 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3059 "error %d returned.", error);
3060 }
3061}
3062
3063/*
3064 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 *
3066 * Find in-core log with lsn.
3067 * If it is in the DIRTY state, just return.
3068 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3069 * state and go to sleep or return.
3070 * If it is in any other state, go to sleep or return.
3071 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003072 * Synchronous forces are implemented with a signal variable. All callers
3073 * to force a given lsn to disk will wait on a the sv attached to the
3074 * specific in-core log. When given in-core log finally completes its
3075 * write to disk, that thread will wake up all threads waiting on the
3076 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003078int
3079_xfs_log_force_lsn(
3080 struct xfs_mount *mp,
3081 xfs_lsn_t lsn,
3082 uint flags,
3083 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003085 struct log *log = mp->m_log;
3086 struct xlog_in_core *iclog;
3087 int already_slept = 0;
3088
3089 ASSERT(lsn != 0);
3090
3091 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Dave Chinner71e330b2010-05-21 14:37:18 +10003093 if (log->l_cilp) {
Dave Chinnera44f13e2010-08-24 11:40:03 +10003094 lsn = xlog_cil_force_lsn(log, lsn);
Dave Chinner71e330b2010-05-21 14:37:18 +10003095 if (lsn == NULLCOMMITLSN)
3096 return 0;
3097 }
3098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003100 spin_lock(&log->l_icloglock);
3101 iclog = log->l_iclog;
3102 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003103 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003104 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
3106
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003107 do {
3108 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3109 iclog = iclog->ic_next;
3110 continue;
3111 }
3112
3113 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3114 spin_unlock(&log->l_icloglock);
3115 return 0;
3116 }
3117
3118 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3119 /*
3120 * We sleep here if we haven't already slept (e.g.
3121 * this is the first time we've looked at the correct
3122 * iclog buf) and the buffer before us is going to
3123 * be sync'ed. The reason for this is that if we
3124 * are doing sync transactions here, by waiting for
3125 * the previous I/O to complete, we can allow a few
3126 * more transactions into this iclog before we close
3127 * it down.
3128 *
3129 * Otherwise, we mark the buffer WANT_SYNC, and bump
3130 * up the refcnt so we can release the log (which
3131 * drops the ref count). The state switch keeps new
3132 * transaction commits from using this buffer. When
3133 * the current commits finish writing into the buffer,
3134 * the refcount will drop to zero and the buffer will
3135 * go out then.
3136 */
3137 if (!already_slept &&
3138 (iclog->ic_prev->ic_state &
3139 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3140 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3141
3142 XFS_STATS_INC(xs_log_force_sleep);
3143
Dave Chinnereb40a872010-12-21 12:09:01 +11003144 xlog_wait(&iclog->ic_prev->ic_write_wait,
3145 &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003146 if (log_flushed)
3147 *log_flushed = 1;
3148 already_slept = 1;
3149 goto try_again;
3150 }
David Chinner155cc6b2008-03-06 13:44:14 +11003151 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003153 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 if (xlog_state_release_iclog(log, iclog))
3155 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003156 if (log_flushed)
3157 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003158 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003161 if ((flags & XFS_LOG_SYNC) && /* sleep */
3162 !(iclog->ic_state &
3163 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3164 /*
3165 * Don't wait on completion if we know that we've
3166 * gotten a log write error.
3167 */
3168 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3169 spin_unlock(&log->l_icloglock);
3170 return XFS_ERROR(EIO);
3171 }
3172 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11003173 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003174 /*
3175 * No need to grab the log lock here since we're
3176 * only deciding whether or not to return EIO
3177 * and the memory read should be atomic.
3178 */
3179 if (iclog->ic_state & XLOG_STATE_IOERROR)
3180 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003182 if (log_flushed)
3183 *log_flushed = 1;
3184 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003185 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003187
3188 return 0;
3189 } while (iclog != log->l_iclog);
3190
3191 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003193}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003195/*
3196 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3197 * about errors or whether the log was flushed or not. This is the normal
3198 * interface to use when trying to unpin items or move the log forward.
3199 */
3200void
3201xfs_log_force_lsn(
3202 xfs_mount_t *mp,
3203 xfs_lsn_t lsn,
3204 uint flags)
3205{
3206 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003208 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3209 if (error) {
3210 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3211 "error %d returned.", error);
3212 }
3213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215/*
3216 * Called when we want to mark the current iclog as being ready to sync to
3217 * disk.
3218 */
David Chinnera8272ce2007-11-23 16:28:09 +11003219STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3221{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003222 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3225 xlog_state_switch_iclogs(log, iclog, 0);
3226 } else {
3227 ASSERT(iclog->ic_state &
3228 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3229 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232
3233/*****************************************************************************
3234 *
3235 * TICKET functions
3236 *
3237 *****************************************************************************
3238 */
3239
3240/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003241 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003243void
3244xfs_log_ticket_put(
3245 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003247 ASSERT(atomic_read(&ticket->t_ref) > 0);
Dave Chinnereb40a872010-12-21 12:09:01 +11003248 if (atomic_dec_and_test(&ticket->t_ref))
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003249 kmem_zone_free(xfs_log_ticket_zone, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003252xlog_ticket_t *
3253xfs_log_ticket_get(
3254 xlog_ticket_t *ticket)
3255{
3256 ASSERT(atomic_read(&ticket->t_ref) > 0);
3257 atomic_inc(&ticket->t_ref);
3258 return ticket;
3259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Dave Chinner955833c2010-05-14 21:41:46 +10003261xlog_tid_t
3262xfs_log_get_trans_ident(
3263 struct xfs_trans *tp)
3264{
3265 return tp->t_ticket->t_tid;
3266}
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003269 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 */
Dave Chinner71e330b2010-05-21 14:37:18 +10003271xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003272xlog_ticket_alloc(
3273 struct log *log,
3274 int unit_bytes,
3275 int cnt,
3276 char client,
Dave Chinner3383ca52010-05-07 11:04:17 +10003277 uint xflags,
3278 int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003280 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003282 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Dave Chinner3383ca52010-05-07 11:04:17 +10003284 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
David Chinnereb01c9c2008-04-10 12:18:46 +10003285 if (!tic)
3286 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 /*
3289 * Permanent reservations have up to 'cnt'-1 active log operations
3290 * in the log. A unit in this case is the amount of space for one
3291 * of these log operations. Normal reservations have a cnt of 1
3292 * and their unit amount is the total amount of space required.
3293 *
3294 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003295 * which occupy space in the on-disk log.
3296 *
3297 * Normal form of a transaction is:
3298 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3299 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3300 *
3301 * We need to account for all the leadup data and trailer data
3302 * around the transaction data.
3303 * And then we need to account for the worst case in terms of using
3304 * more space.
3305 * The worst case will happen if:
3306 * - the placement of the transaction happens to be such that the
3307 * roundoff is at its maximum
3308 * - the transaction data is synced before the commit record is synced
3309 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3310 * Therefore the commit record is in its own Log Record.
3311 * This can happen as the commit record is called with its
3312 * own region to xlog_write().
3313 * This then means that in the worst case, roundoff can happen for
3314 * the commit-rec as well.
3315 * The commit-rec is smaller than padding in this scenario and so it is
3316 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 */
3318
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003319 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003321 unit_bytes += sizeof(xfs_trans_header_t);
3322
3323 /* for start-rec */
3324 unit_bytes += sizeof(xlog_op_header_t);
3325
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003326 /*
3327 * for LR headers - the space for data in an iclog is the size minus
3328 * the space used for the headers. If we use the iclog size, then we
3329 * undercalculate the number of headers required.
3330 *
3331 * Furthermore - the addition of op headers for split-recs might
3332 * increase the space required enough to require more log and op
3333 * headers, so take that into account too.
3334 *
3335 * IMPORTANT: This reservation makes the assumption that if this
3336 * transaction is the first in an iclog and hence has the LR headers
3337 * accounted to it, then the remaining space in the iclog is
3338 * exclusively for this transaction. i.e. if the transaction is larger
3339 * than the iclog, it will be the only thing in that iclog.
3340 * Fundamentally, this means we must pass the entire log vector to
3341 * xlog_write to guarantee this.
3342 */
3343 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3344 num_headers = howmany(unit_bytes, iclog_space);
3345
3346 /* for split-recs - ophdrs added when data split over LRs */
3347 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3348
3349 /* add extra header reservations if we overrun */
3350 while (!num_headers ||
3351 howmany(unit_bytes, iclog_space) > num_headers) {
3352 unit_bytes += sizeof(xlog_op_header_t);
3353 num_headers++;
3354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 unit_bytes += log->l_iclog_hsize * num_headers;
3356
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003357 /* for commit-rec LR header - note: padding will subsume the ophdr */
3358 unit_bytes += log->l_iclog_hsize;
3359
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003360 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003361 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003362 log->l_mp->m_sb.sb_logsunit > 1) {
3363 /* log su roundoff */
3364 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3365 } else {
3366 /* BB roundoff */
3367 unit_bytes += 2*BBSIZE;
3368 }
3369
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003370 atomic_set(&tic->t_ref, 1);
Dave Chinner10547942010-12-21 12:02:25 +11003371 INIT_LIST_HEAD(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 tic->t_unit_res = unit_bytes;
3373 tic->t_curr_res = unit_bytes;
3374 tic->t_cnt = cnt;
3375 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003376 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 tic->t_clientid = client;
3378 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003379 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 if (xflags & XFS_LOG_PERM_RESERV)
3381 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinnereb40a872010-12-21 12:09:01 +11003382 init_waitqueue_head(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Christoph Hellwig0adba532007-08-30 17:21:46 +10003384 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003387}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
3389
3390/******************************************************************************
3391 *
3392 * Log debug routines
3393 *
3394 ******************************************************************************
3395 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003396#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397/*
3398 * Make sure that the destination ptr is within the valid data region of
3399 * one of the iclogs. This uses backup pointers stored in a different
3400 * part of the log in case we trash the log structure.
3401 */
3402void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003403xlog_verify_dest_ptr(
3404 struct log *log,
3405 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
3407 int i;
3408 int good_ptr = 0;
3409
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003410 for (i = 0; i < log->l_iclog_bufs; i++) {
3411 if (ptr >= log->l_iclog_bak[i] &&
3412 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 good_ptr++;
3414 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003415
3416 if (!good_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003418}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
3420STATIC void
3421xlog_verify_grant_head(xlog_t *log, int equals)
3422{
Dave Chinnera69ed032010-12-21 12:08:20 +11003423 int reserve_cycle, reserve_space;
3424 int write_cycle, write_space;
3425
3426 xlog_crack_grant_head(&log->l_grant_reserve_head,
3427 &reserve_cycle, &reserve_space);
3428 xlog_crack_grant_head(&log->l_grant_write_head,
3429 &write_cycle, &write_space);
3430
3431 if (reserve_cycle == write_cycle) {
3432 if (equals)
3433 ASSERT(reserve_space >= write_space);
3434 else
3435 ASSERT(reserve_space > write_space);
3436 } else {
3437 ASSERT(reserve_cycle - 1 == write_cycle);
3438 ASSERT(write_space >= reserve_space);
3439 }
3440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Dave Chinner3f336c62010-12-21 12:02:52 +11003442STATIC void
3443xlog_verify_grant_tail(
3444 struct log *log)
3445{
3446 xfs_lsn_t tail_lsn = log->l_tail_lsn;
Dave Chinnera69ed032010-12-21 12:08:20 +11003447 int cycle, space;
Dave Chinner3f336c62010-12-21 12:02:52 +11003448
3449 /*
3450 * Check to make sure the grant write head didn't just over lap the
3451 * tail. If the cycles are the same, we can't be overlapping.
3452 * Otherwise, make sure that the cycles differ by exactly one and
3453 * check the byte count.
3454 */
Dave Chinnera69ed032010-12-21 12:08:20 +11003455 xlog_crack_grant_head(&log->l_grant_write_head, &cycle, &space);
3456 if (CYCLE_LSN(tail_lsn) != cycle) {
3457 ASSERT(cycle - 1 == CYCLE_LSN(tail_lsn));
3458 ASSERT(space <= BBTOB(BLOCK_LSN(tail_lsn)));
Dave Chinner3f336c62010-12-21 12:02:52 +11003459 }
3460}
3461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462/* check if it will fit */
3463STATIC void
3464xlog_verify_tail_lsn(xlog_t *log,
3465 xlog_in_core_t *iclog,
3466 xfs_lsn_t tail_lsn)
3467{
3468 int blocks;
3469
3470 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3471 blocks =
3472 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3473 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3474 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3475 } else {
3476 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3477
3478 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3479 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3480
3481 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3482 if (blocks < BTOBB(iclog->ic_offset) + 1)
3483 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3484 }
3485} /* xlog_verify_tail_lsn */
3486
3487/*
3488 * Perform a number of checks on the iclog before writing to disk.
3489 *
3490 * 1. Make sure the iclogs are still circular
3491 * 2. Make sure we have a good magic number
3492 * 3. Make sure we don't have magic numbers in the data
3493 * 4. Check fields of each log operation header for:
3494 * A. Valid client identifier
3495 * B. tid ptr value falls in valid ptr space (user space code)
3496 * C. Length in log record header is correct according to the
3497 * individual operation headers within record.
3498 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3499 * log, check the preceding blocks of the physical log to make sure all
3500 * the cycle numbers agree with the current cycle number.
3501 */
3502STATIC void
3503xlog_verify_iclog(xlog_t *log,
3504 xlog_in_core_t *iclog,
3505 int count,
3506 boolean_t syncing)
3507{
3508 xlog_op_header_t *ophead;
3509 xlog_in_core_t *icptr;
3510 xlog_in_core_2_t *xhdr;
3511 xfs_caddr_t ptr;
3512 xfs_caddr_t base_ptr;
3513 __psint_t field_offset;
3514 __uint8_t clientid;
3515 int len, i, j, k, op_len;
3516 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
3518 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003519 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 icptr = log->l_iclog;
3521 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003522 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 xlog_panic("xlog_verify_iclog: invalid ptr");
3524 icptr = icptr->ic_next;
3525 }
3526 if (icptr != log->l_iclog)
3527 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003528 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
3530 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003531 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 xlog_panic("xlog_verify_iclog: invalid magic num");
3533
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003534 ptr = (xfs_caddr_t) &iclog->ic_header;
3535 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003537 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 xlog_panic("xlog_verify_iclog: unexpected magic num");
3539 }
3540
3541 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003542 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 ptr = iclog->ic_datap;
3544 base_ptr = ptr;
3545 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003546 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 for (i = 0; i < len; i++) {
3548 ophead = (xlog_op_header_t *)ptr;
3549
3550 /* clientid is only 1 byte */
3551 field_offset = (__psint_t)
3552 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3553 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3554 clientid = ophead->oh_clientid;
3555 } else {
3556 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3557 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3558 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3559 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003560 clientid = xlog_get_client_id(
3561 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003563 clientid = xlog_get_client_id(
3564 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 }
3566 }
3567 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003568 cmn_err(CE_WARN, "xlog_verify_iclog: "
3569 "invalid clientid %d op 0x%p offset 0x%lx",
3570 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
3572 /* check length */
3573 field_offset = (__psint_t)
3574 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3575 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003576 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 } else {
3578 idx = BTOBBT((__psint_t)&ophead->oh_len -
3579 (__psint_t)iclog->ic_datap);
3580 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3581 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3582 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003583 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003585 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 }
3587 }
3588 ptr += sizeof(xlog_op_header_t) + op_len;
3589 }
3590} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
3593/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003594 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 */
3596STATIC int
3597xlog_state_ioerror(
3598 xlog_t *log)
3599{
3600 xlog_in_core_t *iclog, *ic;
3601
3602 iclog = log->l_iclog;
3603 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3604 /*
3605 * Mark all the incore logs IOERROR.
3606 * From now on, no log flushes will result.
3607 */
3608 ic = iclog;
3609 do {
3610 ic->ic_state = XLOG_STATE_IOERROR;
3611 ic = ic->ic_next;
3612 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 }
3615 /*
3616 * Return non-zero, if state transition has already happened.
3617 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003618 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619}
3620
3621/*
3622 * This is called from xfs_force_shutdown, when we're forcibly
3623 * shutting down the filesystem, typically because of an IO error.
3624 * Our main objectives here are to make sure that:
3625 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3626 * parties to find out, 'atomically'.
3627 * b. those who're sleeping on log reservations, pinned objects and
3628 * other resources get woken up, and be told the bad news.
3629 * c. nothing new gets queued up after (a) and (b) are done.
3630 * d. if !logerror, flush the iclogs to disk, then seal them off
3631 * for business.
Dave Chinner9da1ab12010-05-17 15:51:59 +10003632 *
3633 * Note: for delayed logging the !logerror case needs to flush the regions
3634 * held in memory out to the iclogs before flushing them to disk. This needs
3635 * to be done before the log is marked as shutdown, otherwise the flush to the
3636 * iclogs will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 */
3638int
3639xfs_log_force_umount(
3640 struct xfs_mount *mp,
3641 int logerror)
3642{
3643 xlog_ticket_t *tic;
3644 xlog_t *log;
3645 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 log = mp->m_log;
3648
3649 /*
3650 * If this happens during log recovery, don't worry about
3651 * locking; the log isn't open for business yet.
3652 */
3653 if (!log ||
3654 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3655 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003656 if (mp->m_sb_bp)
3657 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003658 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 }
3660
3661 /*
3662 * Somebody could've already done the hard work for us.
3663 * No need to get locks for this.
3664 */
3665 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3666 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003667 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 }
3669 retval = 0;
Dave Chinner9da1ab12010-05-17 15:51:59 +10003670
3671 /*
3672 * Flush the in memory commit item list before marking the log as
3673 * being shut down. We need to do it in this order to ensure all the
3674 * completed transactions are flushed to disk with the xfs_log_force()
3675 * call below.
3676 */
3677 if (!logerror && (mp->m_flags & XFS_MOUNT_DELAYLOG))
Dave Chinnera44f13e2010-08-24 11:40:03 +10003678 xlog_cil_force(log);
Dave Chinner9da1ab12010-05-17 15:51:59 +10003679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 /*
3681 * We must hold both the GRANT lock and the LOG lock,
3682 * before we mark the filesystem SHUTDOWN and wake
3683 * everybody up to tell the bad news.
3684 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003685 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003686 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003688 if (mp->m_sb_bp)
3689 XFS_BUF_DONE(mp->m_sb_bp);
3690
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 /*
3692 * This flag is sort of redundant because of the mount flag, but
3693 * it's good to maintain the separation between the log and the rest
3694 * of XFS.
3695 */
3696 log->l_flags |= XLOG_IO_ERROR;
3697
3698 /*
3699 * If we hit a log error, we want to mark all the iclogs IOERROR
3700 * while we're still holding the loglock.
3701 */
3702 if (logerror)
3703 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003704 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
3706 /*
Dave Chinner10547942010-12-21 12:02:25 +11003707 * We don't want anybody waiting for log reservations after this. That
3708 * means we have to wake up everybody queued up on reserveq as well as
3709 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3710 * we don't enqueue anything once the SHUTDOWN flag is set, and this
3711 * action is protected by the GRANTLOCK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 */
Dave Chinner10547942010-12-21 12:02:25 +11003713 list_for_each_entry(tic, &log->l_reserveq, t_queue)
Dave Chinnereb40a872010-12-21 12:09:01 +11003714 wake_up(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Dave Chinner10547942010-12-21 12:02:25 +11003716 list_for_each_entry(tic, &log->l_writeq, t_queue)
Dave Chinnereb40a872010-12-21 12:09:01 +11003717 wake_up(&tic->t_wait);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003718 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003720 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 ASSERT(!logerror);
3722 /*
3723 * Force the incore logs to disk before shutting the
3724 * log down completely.
3725 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003726 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3727
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003728 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003730 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
3732 /*
3733 * Wake up everybody waiting on xfs_log_force.
3734 * Callback all log item committed functions as if the
3735 * log writes were completed.
3736 */
3737 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3738
3739#ifdef XFSERRORDEBUG
3740 {
3741 xlog_in_core_t *iclog;
3742
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003743 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 iclog = log->l_iclog;
3745 do {
3746 ASSERT(iclog->ic_callback == 0);
3747 iclog = iclog->ic_next;
3748 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003749 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 }
3751#endif
3752 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003753 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754}
3755
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003756STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757xlog_iclogs_empty(xlog_t *log)
3758{
3759 xlog_in_core_t *iclog;
3760
3761 iclog = log->l_iclog;
3762 do {
3763 /* endianness does not matter here, zero is zero in
3764 * any language.
3765 */
3766 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 iclog = iclog->ic_next;
3769 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003770 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771}