blob: 1b82735471abae5c70fd8a18c7f08497aadac0a4 [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);
50STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
51STATIC 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);
85STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
86 int count, boolean_t syncing);
87STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
88 xfs_lsn_t tail_lsn);
89#else
90#define xlog_verify_dest_ptr(a,b)
91#define xlog_verify_grant_head(a,b)
92#define xlog_verify_iclog(a,b,c,d)
93#define xlog_verify_tail_lsn(a,b,c)
94#endif
95
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100096STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Christoph Hellwigdd954c62006-01-11 15:34:50 +110098static void
99xlog_grant_sub_space(struct log *log, int bytes)
100{
101 log->l_grant_write_bytes -= bytes;
102 if (log->l_grant_write_bytes < 0) {
103 log->l_grant_write_bytes += log->l_logsize;
104 log->l_grant_write_cycle--;
105 }
106
107 log->l_grant_reserve_bytes -= bytes;
108 if ((log)->l_grant_reserve_bytes < 0) {
109 log->l_grant_reserve_bytes += log->l_logsize;
110 log->l_grant_reserve_cycle--;
111 }
112
113}
114
115static void
116xlog_grant_add_space_write(struct log *log, int bytes)
117{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000118 int tmp = log->l_logsize - log->l_grant_write_bytes;
119 if (tmp > bytes)
120 log->l_grant_write_bytes += bytes;
121 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100122 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000123 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100124 }
125}
126
127static void
128xlog_grant_add_space_reserve(struct log *log, int bytes)
129{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000130 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
131 if (tmp > bytes)
132 log->l_grant_reserve_bytes += bytes;
133 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100134 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000135 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100136 }
137}
138
139static inline void
140xlog_grant_add_space(struct log *log, int bytes)
141{
142 xlog_grant_add_space_write(log, bytes);
143 xlog_grant_add_space_reserve(log, bytes);
144}
145
Christoph Hellwig0adba532007-08-30 17:21:46 +1000146static void
147xlog_tic_reset_res(xlog_ticket_t *tic)
148{
149 tic->t_res_num = 0;
150 tic->t_res_arr_sum = 0;
151 tic->t_res_num_ophdrs = 0;
152}
153
154static void
155xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
156{
157 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
158 /* add to overflow and start again */
159 tic->t_res_o_flow += tic->t_res_arr_sum;
160 tic->t_res_num = 0;
161 tic->t_res_arr_sum = 0;
162 }
163
164 tic->t_res_arr[tic->t_res_num].r_len = len;
165 tic->t_res_arr[tic->t_res_num].r_type = type;
166 tic->t_res_arr_sum += len;
167 tic->t_res_num++;
168}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * NOTES:
172 *
173 * 1. currblock field gets updated at startup and after in-core logs
174 * marked as with WANT_SYNC.
175 */
176
177/*
178 * This routine is called when a user of a log manager ticket is done with
179 * the reservation. If the ticket was ever used, then a commit record for
180 * the associated transaction is written out as a log operation header with
181 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
182 * a given ticket. If the ticket was one with a permanent reservation, then
183 * a few operations are done differently. Permanent reservation tickets by
184 * default don't release the reservation. They just commit the current
185 * transaction with the belief that the reservation is still needed. A flag
186 * must be passed in before permanent reservations are actually released.
187 * When these type of tickets are not released, they need to be set into
188 * the inited state again. By doing this, a start record will be written
189 * out when the next write occurs.
190 */
191xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000192xfs_log_done(
193 struct xfs_mount *mp,
194 struct xlog_ticket *ticket,
195 struct xlog_in_core **iclog,
196 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000198 struct log *log = mp->m_log;
199 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (XLOG_FORCED_SHUTDOWN(log) ||
202 /*
203 * If nothing was ever written, don't write out commit record.
204 * If we get an error, just continue and give back the log ticket.
205 */
206 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100207 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 lsn = (xfs_lsn_t) -1;
209 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
210 flags |= XFS_LOG_REL_PERM_RESERV;
211 }
212 }
213
214
215 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
216 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000217 trace_xfs_log_done_nonperm(log, ticket);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000220 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * request has been made to release a permanent reservation.
222 */
223 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100224 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000226 trace_xfs_log_done_perm(log, ticket);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000229 /* If this ticket was a permanent reservation and we aren't
230 * trying to release it, reset the inited flags; so next time
231 * we write, a start record will be written out.
232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Attaches a new iclog I/O completion callback routine during
241 * transaction commit. If the log is in error state, a non-zero
242 * return code is handed back and the caller is responsible for
243 * executing the callback at an appropriate time.
244 */
245int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000246xfs_log_notify(
247 struct xfs_mount *mp,
248 struct xlog_in_core *iclog,
249 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000251 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
David Chinner114d23a2008-04-10 12:18:39 +1000253 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
255 if (!abortflg) {
256 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
257 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
258 cb->cb_next = NULL;
259 *(iclog->ic_callback_tail) = cb;
260 iclog->ic_callback_tail = &(cb->cb_next);
261 }
David Chinner114d23a2008-04-10 12:18:39 +1000262 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000264}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000267xfs_log_release_iclog(
268 struct xfs_mount *mp,
269 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000271 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000272 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100273 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
276 return 0;
277}
278
279/*
280 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
281 * to the reservation.
282 * 2. Potentially, push buffers at tail of log to disk.
283 *
284 * Each reservation is going to reserve extra space for a log record header.
285 * When writes happen to the on-disk log, we don't subtract the length of the
286 * log record header from any reservation. By wasting space in each
287 * reservation, we prevent over allocation problems.
288 */
289int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000290xfs_log_reserve(
291 struct xfs_mount *mp,
292 int unit_bytes,
293 int cnt,
294 struct xlog_ticket **ticket,
295 __uint8_t client,
296 uint flags,
297 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000299 struct log *log = mp->m_log;
300 struct xlog_ticket *internal_ticket;
301 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if (XLOG_FORCED_SHUTDOWN(log))
306 return XFS_ERROR(EIO);
307
308 XFS_STATS_INC(xs_try_logspace);
309
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (*ticket != NULL) {
312 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000313 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000314
Dave Chinner524ee362010-05-07 11:05:05 +1000315 /*
316 * this is a new transaction on the ticket, so we need to
317 * change the transaction ID so that the next transaction has a
318 * different TID in the log. Just add one to the existing tid
319 * so that we can see chains of rolling transactions in the log
320 * easily.
321 */
322 internal_ticket->t_tid++;
323
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000324 trace_xfs_log_reserve(log, internal_ticket);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
327 retval = xlog_regrant_write_log_space(log, internal_ticket);
328 } else {
329 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100330 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Dave Chinner3383ca52010-05-07 11:04:17 +1000331 client, flags,
332 KM_SLEEP|KM_MAYFAIL);
David Chinnereb01c9c2008-04-10 12:18:46 +1000333 if (!internal_ticket)
334 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000335 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000337
338 trace_xfs_log_reserve(log, internal_ticket);
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xlog_grant_push_ail(mp,
341 (internal_ticket->t_unit_res *
342 internal_ticket->t_cnt));
343 retval = xlog_grant_log_space(log, internal_ticket);
344 }
345
346 return retval;
347} /* xfs_log_reserve */
348
349
350/*
351 * Mount a log filesystem
352 *
353 * mp - ubiquitous xfs mount point structure
354 * log_target - buftarg of on-disk log device
355 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
356 * num_bblocks - Number of BBSIZE blocks in on-disk log
357 *
358 * Return error or zero.
359 */
360int
David Chinner249a8c12008-02-05 12:13:32 +1100361xfs_log_mount(
362 xfs_mount_t *mp,
363 xfs_buftarg_t *log_target,
364 xfs_daddr_t blk_offset,
365 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
David Chinner249a8c12008-02-05 12:13:32 +1100367 int error;
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
370 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
371 else {
372 cmn_err(CE_NOTE,
373 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
374 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000375 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
378 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200379 if (IS_ERR(mp->m_log)) {
380 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100381 goto out;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
David Chinner249a8c12008-02-05 12:13:32 +1100385 * Initialize the AIL now we have a log.
386 */
David Chinner249a8c12008-02-05 12:13:32 +1100387 error = xfs_trans_ail_init(mp);
388 if (error) {
389 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100390 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100391 }
David Chinnera9c21c12008-10-30 17:39:35 +1100392 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100393
394 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * skip log recovery on a norecovery mount. pretend it all
396 * just worked.
397 */
398 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100399 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
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
Eric Sandeen65be6052006-01-11 15:34:19 +1100404 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000407 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (error) {
409 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100410 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 }
413
414 /* Normal transactions can now occur */
415 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
416
Dave Chinner71e330b2010-05-21 14:37:18 +1000417 /*
418 * Now the log has been fully initialised and we know were our
419 * space grant counters are, we can initialise the permanent ticket
420 * needed for delayed logging to work.
421 */
422 xlog_cil_init_post_recovery(mp->m_log);
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100425
426out_destroy_ail:
427 xfs_trans_ail_destroy(mp);
428out_free_log:
429 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100430out:
David Chinner249a8c12008-02-05 12:13:32 +1100431 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/*
435 * Finish the recovery of the file system. This is separate from
436 * the xfs_log_mount() call, because it depends on the code in
437 * xfs_mountfs() to read in the root and real-time bitmap inodes
438 * between calling xfs_log_mount() and here.
439 *
440 * mp - ubiquitous xfs mount point structure
441 */
442int
Christoph Hellwig42490232008-08-13 16:49:32 +1000443xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 int error;
446
447 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000448 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 else {
450 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000451 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
454 return error;
455}
456
457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Final log writes as part of unmount.
459 *
460 * Mark the filesystem clean as unmount happens. Note that during relocation
461 * this routine needs to be executed as part of source-bag while the
462 * deallocation must not be done until source-end.
463 */
464
465/*
466 * Unmount record used to have a string "Unmount filesystem--" in the
467 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
468 * We just write the magic number now since that particular field isn't
469 * currently architecture converted and "nUmount" is a bit foo.
470 * As far as I know, there weren't any dependencies on the old behaviour.
471 */
472
473int
474xfs_log_unmount_write(xfs_mount_t *mp)
475{
476 xlog_t *log = mp->m_log;
477 xlog_in_core_t *iclog;
478#ifdef DEBUG
479 xlog_in_core_t *first_iclog;
480#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000481 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 xfs_lsn_t lsn;
483 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /*
486 * Don't write out unmount record on read-only mounts.
487 * Or, if we are doing a forced umount (typically because of IO errors).
488 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000489 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return 0;
491
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000492 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000493 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495#ifdef DEBUG
496 first_iclog = iclog = log->l_iclog;
497 do {
498 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
499 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
500 ASSERT(iclog->ic_offset == 0);
501 }
502 iclog = iclog->ic_next;
503 } while (iclog != first_iclog);
504#endif
505 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000506 error = xfs_log_reserve(mp, 600, 1, &tic,
507 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100509 /* the data section must be 32 bit size aligned */
510 struct {
511 __uint16_t magic;
512 __uint16_t pad1;
513 __uint32_t pad2; /* may as well make it 64 bits */
514 } magic = {
515 .magic = XLOG_UNMOUNT_TYPE,
516 };
517 struct xfs_log_iovec reg = {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000518 .i_addr = &magic,
Dave Chinner55b66332010-03-23 11:43:17 +1100519 .i_len = sizeof(magic),
520 .i_type = XLOG_REG_TYPE_UNMOUNT,
521 };
522 struct xfs_log_vec vec = {
523 .lv_niovecs = 1,
524 .lv_iovecp = &reg,
525 };
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* remove inited flag */
Dave Chinner55b66332010-03-23 11:43:17 +1100528 tic->t_flags = 0;
529 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 NULL, XLOG_UNMOUNT_TRANS);
531 /*
532 * At this point, we're umounting anyway,
533 * so there's no point in transitioning log state
534 * to IOERROR. Just continue...
535 */
536 }
537
538 if (error) {
539 xfs_fs_cmn_err(CE_ALERT, mp,
540 "xfs_log_unmount: unmount record failed");
541 }
542
543
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000544 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100546 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100548 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000549 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000551 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
553 iclog->ic_state == XLOG_STATE_DIRTY)) {
554 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000555 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 &log->l_icloglock, s);
557 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000558 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000561 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000563 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000564 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000565 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100566 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else {
569 /*
570 * We're already in forced_shutdown mode, couldn't
571 * even attempt to write out the unmount transaction.
572 *
573 * Go through the motions of sync'ing and releasing
574 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000575 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * be in progress. Do this as a separate section of
577 * code so we'll know if we ever get stuck here that
578 * we're in this odd situation of trying to unmount
579 * a file system that went into forced_shutdown as
580 * the result of an unmount..
581 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000582 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100584 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100587 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000588 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000590 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
593 || iclog->ic_state == XLOG_STATE_DIRTY
594 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
595
David Chinner12017fa2008-08-13 16:34:31 +1000596 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 &log->l_icloglock, s);
598 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000599 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 }
602
David Chinner1bb7d6b2008-04-10 12:24:38 +1000603 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604} /* xfs_log_unmount_write */
605
606/*
607 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100608 *
609 * We need to stop the aild from running before we destroy
610 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 */
612void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100613xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
David Chinner249a8c12008-02-05 12:13:32 +1100615 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000616 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Dave Chinner43f5efc2010-03-23 10:10:00 +1100619void
620xfs_log_item_init(
621 struct xfs_mount *mp,
622 struct xfs_log_item *item,
623 int type,
624 struct xfs_item_ops *ops)
625{
626 item->li_mountp = mp;
627 item->li_ailp = mp->m_ail;
628 item->li_type = type;
629 item->li_ops = ops;
Dave Chinner71e330b2010-05-21 14:37:18 +1000630 item->li_lv = NULL;
631
632 INIT_LIST_HEAD(&item->li_ail);
633 INIT_LIST_HEAD(&item->li_cil);
Dave Chinner43f5efc2010-03-23 10:10:00 +1100634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/*
637 * Write region vectors to log. The write happens using the space reservation
638 * of the ticket (tic). It is not a requirement that all writes for a given
Dave Chinner9b9fc2b72010-03-23 11:21:11 +1100639 * transaction occur with one call to xfs_log_write(). However, it is important
640 * to note that the transaction reservation code makes an assumption about the
641 * number of log headers a transaction requires that may be violated if you
642 * don't pass all the transaction vectors in one call....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
644int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000645xfs_log_write(
646 struct xfs_mount *mp,
647 struct xfs_log_iovec reg[],
648 int nentries,
649 struct xlog_ticket *tic,
650 xfs_lsn_t *start_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000652 struct log *log = mp->m_log;
653 int error;
Dave Chinner55b66332010-03-23 11:43:17 +1100654 struct xfs_log_vec vec = {
655 .lv_niovecs = nentries,
656 .lv_iovecp = reg,
657 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (XLOG_FORCED_SHUTDOWN(log))
660 return XFS_ERROR(EIO);
661
Dave Chinner55b66332010-03-23 11:43:17 +1100662 error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000663 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +1000664 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100665 return error;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668void
669xfs_log_move_tail(xfs_mount_t *mp,
670 xfs_lsn_t tail_lsn)
671{
672 xlog_ticket_t *tic;
673 xlog_t *log = mp->m_log;
674 int need_bytes, free_bytes, cycle, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (XLOG_FORCED_SHUTDOWN(log))
677 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 if (tail_lsn == 0) {
680 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000681 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000683 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000686 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
689 * tail_lsn.
690 */
691 if (tail_lsn != 1) {
692 log->l_tail_lsn = tail_lsn;
693 }
694
Dave Chinner10547942010-12-21 12:02:25 +1100695 if (!list_empty(&log->l_writeq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#ifdef DEBUG
697 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
698 panic("Recovery problem");
699#endif
700 cycle = log->l_grant_write_cycle;
701 bytes = log->l_grant_write_bytes;
702 free_bytes = xlog_space_left(log, cycle, bytes);
Dave Chinner10547942010-12-21 12:02:25 +1100703 list_for_each_entry(tic, &log->l_writeq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
705
706 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
707 break;
708 tail_lsn = 0;
709 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000710 sv_signal(&tic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +1100711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
Dave Chinner10547942010-12-21 12:02:25 +1100713
714 if (!list_empty(&log->l_reserveq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715#ifdef DEBUG
716 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
717 panic("Recovery problem");
718#endif
719 cycle = log->l_grant_reserve_cycle;
720 bytes = log->l_grant_reserve_bytes;
721 free_bytes = xlog_space_left(log, cycle, bytes);
Dave Chinner10547942010-12-21 12:02:25 +1100722 list_for_each_entry(tic, &log->l_reserveq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
724 need_bytes = tic->t_unit_res*tic->t_cnt;
725 else
726 need_bytes = tic->t_unit_res;
727 if (free_bytes < need_bytes && tail_lsn != 1)
728 break;
729 tail_lsn = 0;
730 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000731 sv_signal(&tic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +1100732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000734 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735} /* xfs_log_move_tail */
736
737/*
738 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000739 * that needs to be covered. To begin the transition to the idle state
740 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
741 * If we are then in a state where covering is needed, the caller is informed
742 * that dummy transactions are required to move the log into the idle state.
743 *
744 * Because this is called as part of the sync process, we should also indicate
745 * that dummy transactions should be issued in anything but the covered or
746 * idle states. This ensures that the log tail is accurately reflected in
747 * the log at the end of the sync, hence if a crash occurrs avoids replay
748 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
750int
751xfs_log_need_covered(xfs_mount_t *mp)
752{
David Chinner27d8d5f2008-10-30 17:38:39 +1100753 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
David Chinner92821e22007-05-24 15:26:31 +1000756 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return 0;
758
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000759 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000760 switch (log->l_covered_state) {
761 case XLOG_STATE_COVER_DONE:
762 case XLOG_STATE_COVER_DONE2:
763 case XLOG_STATE_COVER_IDLE:
764 break;
765 case XLOG_STATE_COVER_NEED:
766 case XLOG_STATE_COVER_NEED2:
767 if (!xfs_trans_ail_tail(log->l_ailp) &&
768 xlog_iclogs_empty(log)) {
769 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
770 log->l_covered_state = XLOG_STATE_COVER_DONE;
771 else
772 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000774 /* FALLTHRU */
775 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000779 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100780 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783/******************************************************************************
784 *
785 * local routines
786 *
787 ******************************************************************************
788 */
789
790/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
791 * The log manager must keep track of the last LR which was committed
792 * to disk. The lsn of this LR will become the new tail_lsn whenever
793 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
794 * the situation where stuff could be written into the log but nothing
795 * was ever in the AIL when asked. Eventually, we panic since the
796 * tail hits the head.
797 *
798 * We may be holding the log iclog lock upon entering this routine.
799 */
800xfs_lsn_t
801xlog_assign_tail_lsn(xfs_mount_t *mp)
802{
803 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 xlog_t *log = mp->m_log;
805
David Chinner5b00f142008-10-30 17:39:00 +1100806 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000807 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (tail_lsn != 0) {
809 log->l_tail_lsn = tail_lsn;
810 } else {
811 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
812 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000813 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 return tail_lsn;
816} /* xlog_assign_tail_lsn */
817
818
819/*
820 * Return the space in the log between the tail and the head. The head
821 * is passed in the cycle/bytes formal parms. In the special case where
822 * the reserve head has wrapped passed the tail, this calculation is no
823 * longer valid. In this case, just return 0 which means there is no space
824 * in the log. This works for all places where this function is called
825 * with the reserve head. Of course, if the write head were to ever
826 * wrap the tail, we should blow up. Rather than catch this case here,
827 * we depend on other ASSERTions in other parts of the code. XXXmiken
828 *
829 * This code also handles the case where the reservation head is behind
830 * the tail. The details of this case are described below, but the end
831 * result is that we return the size of the log as the amount of space left.
832 */
David Chinnera8272ce2007-11-23 16:28:09 +1100833STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834xlog_space_left(xlog_t *log, int cycle, int bytes)
835{
836 int free_bytes;
837 int tail_bytes;
838 int tail_cycle;
839
840 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
841 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
842 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
843 free_bytes = log->l_logsize - (bytes - tail_bytes);
844 } else if ((tail_cycle + 1) < cycle) {
845 return 0;
846 } else if (tail_cycle < cycle) {
847 ASSERT(tail_cycle == (cycle - 1));
848 free_bytes = tail_bytes - bytes;
849 } else {
850 /*
851 * The reservation head is behind the tail.
852 * In this case we just want to return the size of the
853 * log as the amount of space left.
854 */
855 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
856 "xlog_space_left: head behind tail\n"
857 " tail_cycle = %d, tail_bytes = %d\n"
858 " GH cycle = %d, GH bytes = %d",
859 tail_cycle, tail_bytes, cycle, bytes);
860 ASSERT(0);
861 free_bytes = log->l_logsize;
862 }
863 return free_bytes;
864} /* xlog_space_left */
865
866
867/*
868 * Log function which is called when an io completes.
869 *
870 * The log manager needs its own routine, in order to control what
871 * happens with the buffer after the write completes.
872 */
873void
874xlog_iodone(xfs_buf_t *bp)
875{
876 xlog_in_core_t *iclog;
877 xlog_t *l;
878 int aborted;
879
880 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
881 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
882 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
883 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 l = iclog->ic_log;
885
886 /*
887 * Race to shutdown the filesystem if we see an error.
888 */
889 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
890 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
891 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
892 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000893 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * This flag will be propagated to the trans-committed
896 * callback routines to let them know that the log-commit
897 * didn't succeed.
898 */
899 aborted = XFS_LI_ABORTED;
900 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
901 aborted = XFS_LI_ABORTED;
902 }
David Chinner3db296f2007-05-14 18:24:16 +1000903
904 /* log I/O is always issued ASYNC */
905 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000907 /*
908 * do not reference the buffer (bp) here as we could race
909 * with it being freed after writing the unmount record to the
910 * log.
911 */
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913} /* xlog_iodone */
914
915/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * Return size of each in-core log record buffer.
917 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200918 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 *
920 * If the filesystem blocksize is too large, we may need to choose a
921 * larger size since the directory code currently logs entire blocks.
922 */
923
924STATIC void
925xlog_get_iclog_buffer_size(xfs_mount_t *mp,
926 xlog_t *log)
927{
928 int size;
929 int xhdrs;
930
Eric Sandeen1cb51252007-08-16 16:24:43 +1000931 if (mp->m_logbufs <= 0)
932 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
933 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100934 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 /*
937 * Buffer size passed in from mount system call.
938 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100939 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 size = log->l_iclog_size = mp->m_logbsize;
941 log->l_iclog_size_log = 0;
942 while (size != 1) {
943 log->l_iclog_size_log++;
944 size >>= 1;
945 }
946
Eric Sandeen62118702008-03-06 13:44:28 +1100947 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200948 /* # headers = size / 32k
949 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
951
952 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
953 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
954 xhdrs++;
955 log->l_iclog_hsize = xhdrs << BBSHIFT;
956 log->l_iclog_heads = xhdrs;
957 } else {
958 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
959 log->l_iclog_hsize = BBSIZE;
960 log->l_iclog_heads = 1;
961 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100962 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200965 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +1000966 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
967 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 /* the default log size is 16k or 32k which is one header sector */
970 log->l_iclog_hsize = BBSIZE;
971 log->l_iclog_heads = 1;
972
Christoph Hellwig7153f8b2009-02-09 08:36:46 +0100973done:
974 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100975 if (mp->m_logbufs == 0)
976 mp->m_logbufs = log->l_iclog_bufs;
977 if (mp->m_logbsize == 0)
978 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979} /* xlog_get_iclog_buffer_size */
980
981
982/*
983 * This routine initializes some of the log structure for a given mount point.
984 * Its primary purpose is to fill in enough, so recovery can occur. However,
985 * some other stuff may be filled in too.
986 */
987STATIC xlog_t *
988xlog_alloc_log(xfs_mount_t *mp,
989 xfs_buftarg_t *log_target,
990 xfs_daddr_t blk_offset,
991 int num_bblks)
992{
993 xlog_t *log;
994 xlog_rec_header_t *head;
995 xlog_in_core_t **iclogp;
996 xlog_in_core_t *iclog, *prev_iclog=NULL;
997 xfs_buf_t *bp;
998 int i;
Dave Chinnera6cb7672009-04-06 18:39:27 +0200999 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +10001000 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Dave Chinner644c3562008-11-10 16:50:24 +11001002 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001003 if (!log) {
1004 xlog_warn("XFS: Log allocation failed: No memory!");
1005 goto out;
1006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 log->l_mp = mp;
1009 log->l_targ = log_target;
1010 log->l_logsize = BBTOB(num_bblks);
1011 log->l_logBBstart = blk_offset;
1012 log->l_logBBsize = num_bblks;
1013 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1014 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1015
1016 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001017 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1019 log->l_last_sync_lsn = log->l_tail_lsn;
1020 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1021 log->l_grant_reserve_cycle = 1;
1022 log->l_grant_write_cycle = 1;
Dave Chinner10547942010-12-21 12:02:25 +11001023 INIT_LIST_HEAD(&log->l_reserveq);
1024 INIT_LIST_HEAD(&log->l_writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Dave Chinnera6cb7672009-04-06 18:39:27 +02001026 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001027 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001028 log2_size = mp->m_sb.sb_logsectlog;
1029 if (log2_size < BBSHIFT) {
1030 xlog_warn("XFS: Log sector size too small "
1031 "(0x%x < 0x%x)", log2_size, BBSHIFT);
1032 goto out_free_log;
1033 }
1034
1035 log2_size -= BBSHIFT;
1036 if (log2_size > mp->m_sectbb_log) {
1037 xlog_warn("XFS: Log sector size too large "
1038 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001039 goto out_free_log;
1040 }
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001043 if (log2_size && log->l_logBBstart > 0 &&
1044 !xfs_sb_version_haslogv2(&mp->m_sb)) {
1045
Dave Chinnera6cb7672009-04-06 18:39:27 +02001046 xlog_warn("XFS: log sector size (0x%x) invalid "
Alex Elder69ce58f2010-04-20 17:09:59 +10001047 "for configuration.", log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001048 goto out_free_log;
1049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001051 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 xlog_get_iclog_buffer_size(mp, log);
1054
Dave Chinnera6cb7672009-04-06 18:39:27 +02001055 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001057 if (!bp)
1058 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1061 ASSERT(XFS_BUF_ISBUSY(bp));
1062 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1063 log->l_xbuf = bp;
1064
Eric Sandeen007c61c2007-10-11 17:43:56 +10001065 spin_lock_init(&log->l_icloglock);
1066 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001067 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1070 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1071
1072 iclogp = &log->l_iclog;
1073 /*
1074 * The amount of memory to allocate for the iclog structure is
1075 * rather funky due to the way the structure is defined. It is
1076 * done this way so that we can use different sizes for machines
1077 * with different amounts of memory. See the definition of
1078 * xlog_in_core_t in xfs_log_priv.h for details.
1079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 ASSERT(log->l_iclog_size >= 4096);
1081 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001082 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1083 if (!*iclogp)
1084 goto out_free_iclog;
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 iclog->ic_prev = prev_iclog;
1088 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001089
Dave Chinner686865f2010-09-24 20:07:47 +10001090 bp = xfs_buf_get_uncached(mp->m_logdev_targp,
1091 log->l_iclog_size, 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001092 if (!bp)
1093 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001094 if (!XFS_BUF_CPSEMA(bp))
1095 ASSERT(0);
1096 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001097 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1098 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001099 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001100#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 head = &iclog->ic_header;
1104 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001105 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1106 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001107 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001108 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001110 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1114 iclog->ic_state = XLOG_STATE_ACTIVE;
1115 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001116 atomic_set(&iclog->ic_refcnt, 0);
1117 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001119 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1122 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001123 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1124 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 iclogp = &iclog->ic_next;
1127 }
1128 *iclogp = log->l_iclog; /* complete ring */
1129 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1130
Dave Chinner71e330b2010-05-21 14:37:18 +10001131 error = xlog_cil_init(log);
1132 if (error)
1133 goto out_free_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001135
1136out_free_iclog:
1137 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1138 prev_iclog = iclog->ic_next;
1139 if (iclog->ic_bp) {
1140 sv_destroy(&iclog->ic_force_wait);
1141 sv_destroy(&iclog->ic_write_wait);
1142 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001143 }
1144 kmem_free(iclog);
1145 }
1146 spinlock_destroy(&log->l_icloglock);
1147 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001148 xfs_buf_free(log->l_xbuf);
1149out_free_log:
1150 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001151out:
1152 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153} /* xlog_alloc_log */
1154
1155
1156/*
1157 * Write out the commit record of a transaction associated with the given
1158 * ticket. Return the lsn of the commit record.
1159 */
1160STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001161xlog_commit_record(
1162 struct log *log,
1163 struct xlog_ticket *ticket,
1164 struct xlog_in_core **iclog,
1165 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Dave Chinner55b66332010-03-23 11:43:17 +11001167 struct xfs_mount *mp = log->l_mp;
1168 int error;
1169 struct xfs_log_iovec reg = {
1170 .i_addr = NULL,
1171 .i_len = 0,
1172 .i_type = XLOG_REG_TYPE_COMMIT,
1173 };
1174 struct xfs_log_vec vec = {
1175 .lv_niovecs = 1,
1176 .lv_iovecp = &reg,
1177 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001180 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1181 XLOG_COMMIT_TRANS);
1182 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001183 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001184 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001185}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187/*
1188 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1189 * log space. This code pushes on the lsn which would supposedly free up
1190 * the 25% which we want to leave free. We may need to adopt a policy which
1191 * pushes on an lsn which is further along in the log once we reach the high
1192 * water mark. In this manner, we would be creating a low water mark.
1193 */
David Chinnera8272ce2007-11-23 16:28:09 +11001194STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195xlog_grant_push_ail(xfs_mount_t *mp,
1196 int need_bytes)
1197{
1198 xlog_t *log = mp->m_log; /* pointer to the log */
1199 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1200 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1201 int free_blocks; /* free blocks left to write to */
1202 int free_bytes; /* free bytes left to write to */
1203 int threshold_block; /* block in lsn we'd like to be at */
1204 int threshold_cycle; /* lsn cycle we'd like to be at */
1205 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1208
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001209 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 free_bytes = xlog_space_left(log,
1211 log->l_grant_reserve_cycle,
1212 log->l_grant_reserve_bytes);
1213 tail_lsn = log->l_tail_lsn;
1214 free_blocks = BTOBBT(free_bytes);
1215
1216 /*
1217 * Set the threshold for the minimum number of free blocks in the
1218 * log to the maximum of what the caller needs, one quarter of the
1219 * log, and 256 blocks.
1220 */
1221 free_threshold = BTOBB(need_bytes);
1222 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1223 free_threshold = MAX(free_threshold, 256);
1224 if (free_blocks < free_threshold) {
1225 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1226 threshold_cycle = CYCLE_LSN(tail_lsn);
1227 if (threshold_block >= log->l_logBBsize) {
1228 threshold_block -= log->l_logBBsize;
1229 threshold_cycle += 1;
1230 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001231 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* Don't pass in an lsn greater than the lsn of the last
1234 * log record known to be on disk.
1235 */
1236 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1237 threshold_lsn = log->l_last_sync_lsn;
1238 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001239 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 /*
1242 * Get the transaction layer to kick the dirty buffers out to
1243 * disk asynchronously. No point in trying to do this if
1244 * the filesystem is shutting down.
1245 */
1246 if (threshold_lsn &&
1247 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001248 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249} /* xlog_grant_push_ail */
1250
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001251/*
1252 * The bdstrat callback function for log bufs. This gives us a central
1253 * place to trap bufs in case we get hit by a log I/O error and need to
1254 * shutdown. Actually, in practice, even when we didn't get a log error,
1255 * we transition the iclogs to IOERROR state *after* flushing all existing
1256 * iclogs to disk. This is because we don't want anymore new transactions to be
1257 * started or completed afterwards.
1258 */
1259STATIC int
1260xlog_bdstrat(
1261 struct xfs_buf *bp)
1262{
1263 struct xlog_in_core *iclog;
1264
1265 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1266 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1267 XFS_BUF_ERROR(bp, EIO);
1268 XFS_BUF_STALE(bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001269 xfs_buf_ioend(bp, 0);
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001270 /*
1271 * It would seem logical to return EIO here, but we rely on
1272 * the log state machine to propagate I/O errors instead of
1273 * doing it here.
1274 */
1275 return 0;
1276 }
1277
1278 bp->b_flags |= _XBF_RUN_QUEUES;
1279 xfs_buf_iorequest(bp);
1280 return 0;
1281}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283/*
1284 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1285 * fashion. Previously, we should have moved the current iclog
1286 * ptr in the log to point to the next available iclog. This allows further
1287 * write to continue while this code syncs out an iclog ready to go.
1288 * Before an in-core log can be written out, the data section must be scanned
1289 * to save away the 1st word of each BBSIZE block into the header. We replace
1290 * it with the current cycle count. Each BBSIZE block is tagged with the
1291 * cycle count because there in an implicit assumption that drives will
1292 * guarantee that entire 512 byte blocks get written at once. In other words,
1293 * we can't have part of a 512 byte block written and part not written. By
1294 * tagging each block, we will know which blocks are valid when recovering
1295 * after an unclean shutdown.
1296 *
1297 * This routine is single threaded on the iclog. No other thread can be in
1298 * this routine with the same iclog. Changing contents of iclog can there-
1299 * fore be done without grabbing the state machine lock. Updating the global
1300 * log will require grabbing the lock though.
1301 *
1302 * The entire log manager uses a logical block numbering scheme. Only
1303 * log_sync (and then only bwrite()) know about the fact that the log may
1304 * not start with block zero on a given device. The log block start offset
1305 * is added immediately before calling bwrite().
1306 */
1307
David Chinnera8272ce2007-11-23 16:28:09 +11001308STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309xlog_sync(xlog_t *log,
1310 xlog_in_core_t *iclog)
1311{
1312 xfs_caddr_t dptr; /* pointer to byte sized element */
1313 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001314 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 uint count; /* byte count of bwrite */
1316 uint count_init; /* initial count before roundup */
1317 int roundoff; /* roundoff to BB or stripe */
1318 int split = 0; /* split write into two regions */
1319 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001320 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001323 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /* Add for LR header */
1326 count_init = log->l_iclog_hsize + iclog->ic_offset;
1327
1328 /* Round out the log write size */
1329 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1330 /* we have a v2 stripe unit to use */
1331 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1332 } else {
1333 count = BBTOB(BTOBB(count_init));
1334 }
1335 roundoff = count - count_init;
1336 ASSERT(roundoff >= 0);
1337 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1338 roundoff < log->l_mp->m_sb.sb_logsunit)
1339 ||
1340 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1341 roundoff < BBTOB(1)));
1342
1343 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001344 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001345 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001346 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /* put cycle number in every block */
1349 xlog_pack_data(log, iclog, roundoff);
1350
1351 /* real byte length */
1352 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001353 iclog->ic_header.h_len =
1354 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001356 iclog->ic_header.h_len =
1357 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359
Nathan Scottf5faad72006-07-28 17:04:44 +10001360 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1362 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001363 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1366
1367 /* Do we need to split this write into 2 parts? */
1368 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1369 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1370 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1371 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1372 } else {
1373 iclog->ic_bwritecnt = 1;
1374 }
David Chinner511105b2007-05-24 15:21:57 +10001375 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001377 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 XFS_BUF_BUSY(bp);
1379 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001380 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwig651701d2010-06-28 10:34:34 -04001381
1382 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001383 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1386 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1387
1388 xlog_verify_iclog(log, iclog, count, B_TRUE);
1389
1390 /* account for log which doesn't start at block #0 */
1391 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1392 /*
1393 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1394 * is shutting down.
1395 */
1396 XFS_BUF_WRITE(bp);
1397
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001398 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1400 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001401 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001404 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1406 (unsigned long)1);
1407 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1408 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1409 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1410 (__psint_t)count), split);
1411 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001412 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 XFS_BUF_BUSY(bp);
1414 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001415 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001416 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1417 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 dptr = XFS_BUF_PTR(bp);
1419 /*
1420 * Bump the cycle numbers at the start of each block
1421 * since this part of the buffer is at the start of
1422 * a new cycle. Watch out for the header magic number
1423 * case, though.
1424 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001425 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001426 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001427 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001428 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 dptr += BBSIZE;
1430 }
1431
1432 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1433 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1434
Nathan Scottc41564b2006-03-29 08:55:14 +10001435 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1437 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001438 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1440 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001441 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445} /* xlog_sync */
1446
1447
1448/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001449 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
David Chinnera8272ce2007-11-23 16:28:09 +11001451STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001452xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int i;
1456
Dave Chinner71e330b2010-05-21 14:37:18 +10001457 xlog_cil_destroy(log);
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 iclog = log->l_iclog;
1460 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001461 sv_destroy(&iclog->ic_force_wait);
1462 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001465 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 iclog = next_iclog;
1467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 spinlock_destroy(&log->l_icloglock);
1469 spinlock_destroy(&log->l_grant_lock);
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001473 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001474} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476/*
1477 * Update counters atomically now that memcpy is done.
1478 */
1479/* ARGSUSED */
1480static inline void
1481xlog_state_finish_copy(xlog_t *log,
1482 xlog_in_core_t *iclog,
1483 int record_cnt,
1484 int copy_bytes)
1485{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001486 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001488 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 iclog->ic_offset += copy_bytes;
1490
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001491 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492} /* xlog_state_finish_copy */
1493
1494
1495
1496
1497/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001498 * print out info relating to regions written which consume
1499 * the reservation
1500 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001501void
1502xlog_print_tic_res(
1503 struct xfs_mount *mp,
1504 struct xlog_ticket *ticket)
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001505{
1506 uint i;
1507 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1508
1509 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1510 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1511 "bformat",
1512 "bchunk",
1513 "efi_format",
1514 "efd_format",
1515 "iformat",
1516 "icore",
1517 "iext",
1518 "ibroot",
1519 "ilocal",
1520 "iattr_ext",
1521 "iattr_broot",
1522 "iattr_local",
1523 "qformat",
1524 "dquot",
1525 "quotaoff",
1526 "LR header",
1527 "unmount",
1528 "commit",
1529 "trans header"
1530 };
1531 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1532 "SETATTR_NOT_SIZE",
1533 "SETATTR_SIZE",
1534 "INACTIVE",
1535 "CREATE",
1536 "CREATE_TRUNC",
1537 "TRUNCATE_FILE",
1538 "REMOVE",
1539 "LINK",
1540 "RENAME",
1541 "MKDIR",
1542 "RMDIR",
1543 "SYMLINK",
1544 "SET_DMATTRS",
1545 "GROWFS",
1546 "STRAT_WRITE",
1547 "DIOSTRAT",
1548 "WRITE_SYNC",
1549 "WRITEID",
1550 "ADDAFORK",
1551 "ATTRINVAL",
1552 "ATRUNCATE",
1553 "ATTR_SET",
1554 "ATTR_RM",
1555 "ATTR_FLAG",
1556 "CLEAR_AGI_BUCKET",
1557 "QM_SBCHANGE",
1558 "DUMMY1",
1559 "DUMMY2",
1560 "QM_QUOTAOFF",
1561 "QM_DQALLOC",
1562 "QM_SETQLIM",
1563 "QM_DQCLUSTER",
1564 "QM_QINOCREATE",
1565 "QM_QUOTAOFF_END",
1566 "SB_UNIT",
1567 "FSYNC_TS",
1568 "GROWFSRT_ALLOC",
1569 "GROWFSRT_ZERO",
1570 "GROWFSRT_FREE",
1571 "SWAPEXT"
1572 };
1573
1574 xfs_fs_cmn_err(CE_WARN, mp,
1575 "xfs_log_write: reservation summary:\n"
1576 " trans type = %s (%u)\n"
1577 " unit res = %d bytes\n"
1578 " current res = %d bytes\n"
1579 " total reg = %u bytes (o/flow = %u bytes)\n"
1580 " ophdrs = %u (ophdr space = %u bytes)\n"
1581 " ophdr + reg = %u bytes\n"
1582 " num regions = %u\n",
1583 ((ticket->t_trans_type <= 0 ||
1584 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1585 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1586 ticket->t_trans_type,
1587 ticket->t_unit_res,
1588 ticket->t_curr_res,
1589 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1590 ticket->t_res_num_ophdrs, ophdr_spc,
1591 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001592 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001593 ticket->t_res_num);
1594
1595 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001596 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001597 cmn_err(CE_WARN,
1598 "region[%u]: %s - %u bytes\n",
1599 i,
1600 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1601 "bad-rtype" : res_type_str[r_type-1]),
1602 ticket->t_res_arr[i].r_len);
1603 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001604
1605 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1606 "xfs_log_write: reservation ran out. Need to up reservation");
1607 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001608}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001609
1610/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001611 * Calculate the potential space needed by the log vector. Each region gets
1612 * its own xlog_op_header_t and may need to be double word aligned.
1613 */
1614static int
1615xlog_write_calc_vec_length(
1616 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001617 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001618{
Dave Chinner55b66332010-03-23 11:43:17 +11001619 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001620 int headers = 0;
1621 int len = 0;
1622 int i;
1623
1624 /* acct for start rec of xact */
1625 if (ticket->t_flags & XLOG_TIC_INITED)
1626 headers++;
1627
Dave Chinner55b66332010-03-23 11:43:17 +11001628 for (lv = log_vector; lv; lv = lv->lv_next) {
1629 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001630
Dave Chinner55b66332010-03-23 11:43:17 +11001631 for (i = 0; i < lv->lv_niovecs; i++) {
1632 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1633
1634 len += vecp->i_len;
1635 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1636 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001637 }
1638
1639 ticket->t_res_num_ophdrs += headers;
1640 len += headers * sizeof(struct xlog_op_header);
1641
1642 return len;
1643}
1644
1645/*
1646 * If first write for transaction, insert start record We can't be trying to
1647 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1648 */
1649static int
1650xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001651 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001652 struct xlog_ticket *ticket)
1653{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001654 if (!(ticket->t_flags & XLOG_TIC_INITED))
1655 return 0;
1656
1657 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1658 ophdr->oh_clientid = ticket->t_clientid;
1659 ophdr->oh_len = 0;
1660 ophdr->oh_flags = XLOG_START_TRANS;
1661 ophdr->oh_res2 = 0;
1662
1663 ticket->t_flags &= ~XLOG_TIC_INITED;
1664
1665 return sizeof(struct xlog_op_header);
1666}
1667
1668static xlog_op_header_t *
1669xlog_write_setup_ophdr(
1670 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001671 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001672 struct xlog_ticket *ticket,
1673 uint flags)
1674{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001675 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1676 ophdr->oh_clientid = ticket->t_clientid;
1677 ophdr->oh_res2 = 0;
1678
1679 /* are we copying a commit or unmount record? */
1680 ophdr->oh_flags = flags;
1681
1682 /*
1683 * We've seen logs corrupted with bad transaction client ids. This
1684 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1685 * and shut down the filesystem.
1686 */
1687 switch (ophdr->oh_clientid) {
1688 case XFS_TRANSACTION:
1689 case XFS_VOLUME:
1690 case XFS_LOG:
1691 break;
1692 default:
1693 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1694 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1695 ophdr->oh_clientid, ticket);
1696 return NULL;
1697 }
1698
1699 return ophdr;
1700}
1701
1702/*
1703 * Set up the parameters of the region copy into the log. This has
1704 * to handle region write split across multiple log buffers - this
1705 * state is kept external to this function so that this code can
1706 * can be written in an obvious, self documenting manner.
1707 */
1708static int
1709xlog_write_setup_copy(
1710 struct xlog_ticket *ticket,
1711 struct xlog_op_header *ophdr,
1712 int space_available,
1713 int space_required,
1714 int *copy_off,
1715 int *copy_len,
1716 int *last_was_partial_copy,
1717 int *bytes_consumed)
1718{
1719 int still_to_copy;
1720
1721 still_to_copy = space_required - *bytes_consumed;
1722 *copy_off = *bytes_consumed;
1723
1724 if (still_to_copy <= space_available) {
1725 /* write of region completes here */
1726 *copy_len = still_to_copy;
1727 ophdr->oh_len = cpu_to_be32(*copy_len);
1728 if (*last_was_partial_copy)
1729 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1730 *last_was_partial_copy = 0;
1731 *bytes_consumed = 0;
1732 return 0;
1733 }
1734
1735 /* partial write of region, needs extra log op header reservation */
1736 *copy_len = space_available;
1737 ophdr->oh_len = cpu_to_be32(*copy_len);
1738 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1739 if (*last_was_partial_copy)
1740 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1741 *bytes_consumed += *copy_len;
1742 (*last_was_partial_copy)++;
1743
1744 /* account for new log op header */
1745 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1746 ticket->t_res_num_ophdrs++;
1747
1748 return sizeof(struct xlog_op_header);
1749}
1750
1751static int
1752xlog_write_copy_finish(
1753 struct log *log,
1754 struct xlog_in_core *iclog,
1755 uint flags,
1756 int *record_cnt,
1757 int *data_cnt,
1758 int *partial_copy,
1759 int *partial_copy_len,
1760 int log_offset,
1761 struct xlog_in_core **commit_iclog)
1762{
1763 if (*partial_copy) {
1764 /*
1765 * This iclog has already been marked WANT_SYNC by
1766 * xlog_state_get_iclog_space.
1767 */
1768 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1769 *record_cnt = 0;
1770 *data_cnt = 0;
1771 return xlog_state_release_iclog(log, iclog);
1772 }
1773
1774 *partial_copy = 0;
1775 *partial_copy_len = 0;
1776
1777 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1778 /* no more space in this iclog - push it. */
1779 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1780 *record_cnt = 0;
1781 *data_cnt = 0;
1782
1783 spin_lock(&log->l_icloglock);
1784 xlog_state_want_sync(log, iclog);
1785 spin_unlock(&log->l_icloglock);
1786
1787 if (!commit_iclog)
1788 return xlog_state_release_iclog(log, iclog);
1789 ASSERT(flags & XLOG_COMMIT_TRANS);
1790 *commit_iclog = iclog;
1791 }
1792
1793 return 0;
1794}
1795
1796/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 * Write some region out to in-core log
1798 *
1799 * This will be called when writing externally provided regions or when
1800 * writing out a commit record for a given transaction.
1801 *
1802 * General algorithm:
1803 * 1. Find total length of this write. This may include adding to the
1804 * lengths passed in.
1805 * 2. Check whether we violate the tickets reservation.
1806 * 3. While writing to this iclog
1807 * A. Reserve as much space in this iclog as can get
1808 * B. If this is first write, save away start lsn
1809 * C. While writing this region:
1810 * 1. If first write of transaction, write start record
1811 * 2. Write log operation header (header per region)
1812 * 3. Find out if we can fit entire region into this iclog
1813 * 4. Potentially, verify destination memcpy ptr
1814 * 5. Memcpy (partial) region
1815 * 6. If partial copy, release iclog; otherwise, continue
1816 * copying more regions into current iclog
1817 * 4. Mark want sync bit (in simulation mode)
1818 * 5. Release iclog for potential flush to on-disk log.
1819 *
1820 * ERRORS:
1821 * 1. Panic if reservation is overrun. This should never happen since
1822 * reservation amounts are generated internal to the filesystem.
1823 * NOTES:
1824 * 1. Tickets are single threaded data structures.
1825 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1826 * syncing routine. When a single log_write region needs to span
1827 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1828 * on all log operation writes which don't contain the end of the
1829 * region. The XLOG_END_TRANS bit is used for the in-core log
1830 * operation which contains the end of the continued log_write region.
1831 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1832 * we don't really know exactly how much space will be used. As a result,
1833 * we don't update ic_offset until the end when we know exactly how many
1834 * bytes have been written out.
1835 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001836int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001837xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001838 struct log *log,
1839 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001840 struct xlog_ticket *ticket,
1841 xfs_lsn_t *start_lsn,
1842 struct xlog_in_core **commit_iclog,
1843 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001845 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001846 struct xfs_log_iovec *vecp;
1847 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001848 int len;
1849 int index;
1850 int partial_copy = 0;
1851 int partial_copy_len = 0;
1852 int contwr = 0;
1853 int record_cnt = 0;
1854 int data_cnt = 0;
1855 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001857 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Dave Chinner55b66332010-03-23 11:43:17 +11001859 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner71e330b2010-05-21 14:37:18 +10001860 if (log->l_cilp) {
1861 /*
1862 * Region headers and bytes are already accounted for.
1863 * We only need to take into account start records and
1864 * split regions in this function.
1865 */
1866 if (ticket->t_flags & XLOG_TIC_INITED)
1867 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1868
1869 /*
1870 * Commit record headers need to be accounted for. These
1871 * come in as separate writes so are easy to detect.
1872 */
1873 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
1874 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1875 } else
1876 ticket->t_curr_res -= len;
1877
1878 if (ticket->t_curr_res < 0)
Dave Chinner55b66332010-03-23 11:43:17 +11001879 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Dave Chinner55b66332010-03-23 11:43:17 +11001881 index = 0;
1882 lv = log_vector;
1883 vecp = lv->lv_iovecp;
1884 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001885 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001886 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001888 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1889 &contwr, &log_offset);
1890 if (error)
1891 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001893 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001894 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001896 /* start_lsn is the first lsn written to. That's all we need. */
1897 if (!*start_lsn)
1898 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001900 /*
1901 * This loop writes out as many regions as can fit in the amount
1902 * of space which was allocated by xlog_state_get_iclog_space().
1903 */
Dave Chinner55b66332010-03-23 11:43:17 +11001904 while (lv && index < lv->lv_niovecs) {
1905 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001906 struct xlog_op_header *ophdr;
1907 int start_rec_copy;
1908 int copy_len;
1909 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Dave Chinner55b66332010-03-23 11:43:17 +11001911 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001912 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001914 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1915 if (start_rec_copy) {
1916 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001917 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001918 start_rec_copy);
1919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001921 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1922 if (!ophdr)
1923 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001925 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001926 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001928 len += xlog_write_setup_copy(ticket, ophdr,
1929 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001930 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001931 &copy_off, &copy_len,
1932 &partial_copy,
1933 &partial_copy_len);
1934 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001935
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001936 /* copy region */
1937 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001938 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1939 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001940
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001941 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1942 record_cnt++;
1943 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001945 error = xlog_write_copy_finish(log, iclog, flags,
1946 &record_cnt, &data_cnt,
1947 &partial_copy,
1948 &partial_copy_len,
1949 log_offset,
1950 commit_iclog);
1951 if (error)
1952 return error;
1953
1954 /*
1955 * if we had a partial copy, we need to get more iclog
1956 * space but we don't want to increment the region
1957 * index because there is still more is this region to
1958 * write.
1959 *
1960 * If we completed writing this region, and we flushed
1961 * the iclog (indicated by resetting of the record
1962 * count), then we also need to get more log space. If
1963 * this was the last record, though, we are done and
1964 * can just return.
1965 */
1966 if (partial_copy)
1967 break;
1968
Dave Chinner55b66332010-03-23 11:43:17 +11001969 if (++index == lv->lv_niovecs) {
1970 lv = lv->lv_next;
1971 index = 0;
1972 if (lv)
1973 vecp = lv->lv_iovecp;
1974 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001975 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11001976 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001977 return 0;
1978 break;
1979 }
1980 }
1981 }
1982
1983 ASSERT(len == 0);
1984
1985 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
1986 if (!commit_iclog)
1987 return xlog_state_release_iclog(log, iclog);
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 ASSERT(flags & XLOG_COMMIT_TRANS);
1990 *commit_iclog = iclog;
1991 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994
1995/*****************************************************************************
1996 *
1997 * State Machine functions
1998 *
1999 *****************************************************************************
2000 */
2001
2002/* Clean iclogs starting from the head. This ordering must be
2003 * maintained, so an iclog doesn't become ACTIVE beyond one that
2004 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002005 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 * iclog is trying to sync to disk.
2007 *
2008 * State Change: DIRTY -> ACTIVE
2009 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002010STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011xlog_state_clean_log(xlog_t *log)
2012{
2013 xlog_in_core_t *iclog;
2014 int changed = 0;
2015
2016 iclog = log->l_iclog;
2017 do {
2018 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2019 iclog->ic_state = XLOG_STATE_ACTIVE;
2020 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002021 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /*
2023 * If the number of ops in this iclog indicate it just
2024 * contains the dummy transaction, we can
2025 * change state into IDLE (the second time around).
2026 * Otherwise we should change the state into
2027 * NEED a dummy.
2028 * We don't need to cover the dummy.
2029 */
2030 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002031 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2032 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 changed = 1;
2034 } else {
2035 /*
2036 * We have two dirty iclogs so start over
2037 * This could also be num of ops indicates
2038 * this is not the dummy going out.
2039 */
2040 changed = 2;
2041 }
2042 iclog->ic_header.h_num_logops = 0;
2043 memset(iclog->ic_header.h_cycle_data, 0,
2044 sizeof(iclog->ic_header.h_cycle_data));
2045 iclog->ic_header.h_lsn = 0;
2046 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2047 /* do nothing */;
2048 else
2049 break; /* stop cleaning */
2050 iclog = iclog->ic_next;
2051 } while (iclog != log->l_iclog);
2052
2053 /* log is locked when we are called */
2054 /*
2055 * Change state for the dummy log recording.
2056 * We usually go to NEED. But we go to NEED2 if the changed indicates
2057 * we are done writing the dummy record.
2058 * If we are done with the second dummy recored (DONE2), then
2059 * we go to IDLE.
2060 */
2061 if (changed) {
2062 switch (log->l_covered_state) {
2063 case XLOG_STATE_COVER_IDLE:
2064 case XLOG_STATE_COVER_NEED:
2065 case XLOG_STATE_COVER_NEED2:
2066 log->l_covered_state = XLOG_STATE_COVER_NEED;
2067 break;
2068
2069 case XLOG_STATE_COVER_DONE:
2070 if (changed == 1)
2071 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2072 else
2073 log->l_covered_state = XLOG_STATE_COVER_NEED;
2074 break;
2075
2076 case XLOG_STATE_COVER_DONE2:
2077 if (changed == 1)
2078 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2079 else
2080 log->l_covered_state = XLOG_STATE_COVER_NEED;
2081 break;
2082
2083 default:
2084 ASSERT(0);
2085 }
2086 }
2087} /* xlog_state_clean_log */
2088
2089STATIC xfs_lsn_t
2090xlog_get_lowest_lsn(
2091 xlog_t *log)
2092{
2093 xlog_in_core_t *lsn_log;
2094 xfs_lsn_t lowest_lsn, lsn;
2095
2096 lsn_log = log->l_iclog;
2097 lowest_lsn = 0;
2098 do {
2099 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002100 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if ((lsn && !lowest_lsn) ||
2102 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2103 lowest_lsn = lsn;
2104 }
2105 }
2106 lsn_log = lsn_log->ic_next;
2107 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002108 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
2111
2112STATIC void
2113xlog_state_do_callback(
2114 xlog_t *log,
2115 int aborted,
2116 xlog_in_core_t *ciclog)
2117{
2118 xlog_in_core_t *iclog;
2119 xlog_in_core_t *first_iclog; /* used to know when we've
2120 * processed all iclogs once */
2121 xfs_log_callback_t *cb, *cb_next;
2122 int flushcnt = 0;
2123 xfs_lsn_t lowest_lsn;
2124 int ioerrors; /* counter: iclogs with errors */
2125 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2126 int funcdidcallbacks; /* flag: function did callbacks */
2127 int repeats; /* for issuing console warnings if
2128 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002129 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002131 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 first_iclog = iclog = log->l_iclog;
2133 ioerrors = 0;
2134 funcdidcallbacks = 0;
2135 repeats = 0;
2136
2137 do {
2138 /*
2139 * Scan all iclogs starting with the one pointed to by the
2140 * log. Reset this starting point each time the log is
2141 * unlocked (during callbacks).
2142 *
2143 * Keep looping through iclogs until one full pass is made
2144 * without running any callbacks.
2145 */
2146 first_iclog = log->l_iclog;
2147 iclog = log->l_iclog;
2148 loopdidcallbacks = 0;
2149 repeats++;
2150
2151 do {
2152
2153 /* skip all iclogs in the ACTIVE & DIRTY states */
2154 if (iclog->ic_state &
2155 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2156 iclog = iclog->ic_next;
2157 continue;
2158 }
2159
2160 /*
2161 * Between marking a filesystem SHUTDOWN and stopping
2162 * the log, we do flush all iclogs to disk (if there
2163 * wasn't a log I/O error). So, we do want things to
2164 * go smoothly in case of just a SHUTDOWN w/o a
2165 * LOG_IO_ERROR.
2166 */
2167 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2168 /*
2169 * Can only perform callbacks in order. Since
2170 * this iclog is not in the DONE_SYNC/
2171 * DO_CALLBACK state, we skip the rest and
2172 * just try to clean up. If we set our iclog
2173 * to DO_CALLBACK, we will not process it when
2174 * we retry since a previous iclog is in the
2175 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002176 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 */
2178 if (!(iclog->ic_state &
2179 (XLOG_STATE_DONE_SYNC |
2180 XLOG_STATE_DO_CALLBACK))) {
2181 if (ciclog && (ciclog->ic_state ==
2182 XLOG_STATE_DONE_SYNC)) {
2183 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2184 }
2185 break;
2186 }
2187 /*
2188 * We now have an iclog that is in either the
2189 * DO_CALLBACK or DONE_SYNC states. The other
2190 * states (WANT_SYNC, SYNCING, or CALLBACK were
2191 * caught by the above if and are going to
2192 * clean (i.e. we aren't doing their callbacks)
2193 * see the above if.
2194 */
2195
2196 /*
2197 * We will do one more check here to see if we
2198 * have chased our tail around.
2199 */
2200
2201 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002202 if (lowest_lsn &&
2203 XFS_LSN_CMP(lowest_lsn,
2204 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 iclog = iclog->ic_next;
2206 continue; /* Leave this iclog for
2207 * another thread */
2208 }
2209
2210 iclog->ic_state = XLOG_STATE_CALLBACK;
2211
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002212 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002215 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 * No one else can be here except us.
2217 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002218 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002219 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2220 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2221 log->l_last_sync_lsn =
2222 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002223 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002226 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 ioerrors++;
2228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
David Chinner114d23a2008-04-10 12:18:39 +10002230 /*
2231 * Keep processing entries in the callback list until
2232 * we come around and it is empty. We need to
2233 * atomically see that the list is empty and change the
2234 * state to DIRTY so that we don't miss any more
2235 * callbacks being added.
2236 */
2237 spin_lock(&iclog->ic_callback_lock);
2238 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002239 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 iclog->ic_callback_tail = &(iclog->ic_callback);
2241 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002242 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002245 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 cb_next = cb->cb_next;
2247 cb->cb_func(cb->cb_arg, aborted);
2248 }
David Chinner114d23a2008-04-10 12:18:39 +10002249 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 cb = iclog->ic_callback;
2251 }
2252
2253 loopdidcallbacks++;
2254 funcdidcallbacks++;
2255
David Chinner114d23a2008-04-10 12:18:39 +10002256 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002257 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002258 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2260 iclog->ic_state = XLOG_STATE_DIRTY;
2261
2262 /*
2263 * Transition from DIRTY to ACTIVE if applicable.
2264 * NOP if STATE_IOERROR.
2265 */
2266 xlog_state_clean_log(log);
2267
2268 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002269 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 iclog = iclog->ic_next;
2272 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002273
2274 if (repeats > 5000) {
2275 flushcnt += repeats;
2276 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002278 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002279 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281 } while (!ioerrors && loopdidcallbacks);
2282
2283 /*
2284 * make one last gasp attempt to see if iclogs are being left in
2285 * limbo..
2286 */
2287#ifdef DEBUG
2288 if (funcdidcallbacks) {
2289 first_iclog = iclog = log->l_iclog;
2290 do {
2291 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2292 /*
2293 * Terminate the loop if iclogs are found in states
2294 * which will cause other threads to clean up iclogs.
2295 *
2296 * SYNCING - i/o completion will go through logs
2297 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002298 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 * IOERROR - give up hope all ye who enter here
2300 */
2301 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2302 iclog->ic_state == XLOG_STATE_SYNCING ||
2303 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2304 iclog->ic_state == XLOG_STATE_IOERROR )
2305 break;
2306 iclog = iclog->ic_next;
2307 } while (first_iclog != iclog);
2308 }
2309#endif
2310
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002311 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2312 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002313 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002314
2315 if (wake)
2316 sv_broadcast(&log->l_flush_wait);
2317}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319
2320/*
2321 * Finish transitioning this iclog to the dirty state.
2322 *
2323 * Make sure that we completely execute this routine only when this is
2324 * the last call to the iclog. There is a good chance that iclog flushes,
2325 * when we reach the end of the physical log, get turned into 2 separate
2326 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2327 * routine. By using the reference count bwritecnt, we guarantee that only
2328 * the second completion goes through.
2329 *
2330 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002331 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 */
David Chinnera8272ce2007-11-23 16:28:09 +11002333STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334xlog_state_done_syncing(
2335 xlog_in_core_t *iclog,
2336 int aborted)
2337{
2338 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002340 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2343 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002344 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2346
2347
2348 /*
2349 * If we got an error, either on the first buffer, or in the case of
2350 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2351 * and none should ever be attempted to be written to disk
2352 * again.
2353 */
2354 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2355 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002356 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return;
2358 }
2359 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2360 }
2361
2362 /*
2363 * Someone could be sleeping prior to writing out the next
2364 * iclog buffer, we wake them all, one will get to do the
2365 * I/O, the others get to wait for the result.
2366 */
David Chinner12017fa2008-08-13 16:34:31 +10002367 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002368 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2370} /* xlog_state_done_syncing */
2371
2372
2373/*
2374 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002375 * sleep. We wait on the flush queue on the head iclog as that should be
2376 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2377 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 *
2379 * The in-core logs are used in a circular fashion. They are not used
2380 * out-of-order even when an iclog past the head is free.
2381 *
2382 * return:
2383 * * log_offset where xlog_write() can start writing into the in-core
2384 * log's data space.
2385 * * in-core log pointer to which xlog_write() should write.
2386 * * boolean indicating this is a continued write to an in-core log.
2387 * If this is the last write, then the in-core log's offset field
2388 * needs to be incremented, depending on the amount of data which
2389 * is copied.
2390 */
David Chinnera8272ce2007-11-23 16:28:09 +11002391STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392xlog_state_get_iclog_space(xlog_t *log,
2393 int len,
2394 xlog_in_core_t **iclogp,
2395 xlog_ticket_t *ticket,
2396 int *continued_write,
2397 int *logoffsetp)
2398{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 int log_offset;
2400 xlog_rec_header_t *head;
2401 xlog_in_core_t *iclog;
2402 int error;
2403
2404restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002405 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002407 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return XFS_ERROR(EIO);
2409 }
2410
2411 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002412 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002414
2415 /* Wait for log writes to have flushed */
2416 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 goto restart;
2418 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 head = &iclog->ic_header;
2421
David Chinner155cc6b2008-03-06 13:44:14 +11002422 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 log_offset = iclog->ic_offset;
2424
2425 /* On the 1st write to an iclog, figure out lsn. This works
2426 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2427 * committing to. If the offset is set, that's how many blocks
2428 * must be written.
2429 */
2430 if (log_offset == 0) {
2431 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002432 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002433 log->l_iclog_hsize,
2434 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002435 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2436 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002437 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 ASSERT(log->l_curr_block >= 0);
2439 }
2440
2441 /* If there is enough room to write everything, then do it. Otherwise,
2442 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2443 * bit is on, so this will get flushed out. Don't update ic_offset
2444 * until you know exactly how many bytes get copied. Therefore, wait
2445 * until later to update ic_offset.
2446 *
2447 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2448 * can fit into remaining data section.
2449 */
2450 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2451 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2452
Dave Chinner49641f12008-07-11 17:43:55 +10002453 /*
2454 * If I'm the only one writing to this iclog, sync it to disk.
2455 * We need to do an atomic compare and decrement here to avoid
2456 * racing with concurrent atomic_dec_and_lock() calls in
2457 * xlog_state_release_iclog() when there is more than one
2458 * reference to the iclog.
2459 */
2460 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2461 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002462 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002463 error = xlog_state_release_iclog(log, iclog);
2464 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002465 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002467 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
2469 goto restart;
2470 }
2471
2472 /* Do we have enough room to write the full amount in the remainder
2473 * of this iclog? Or must we continue a write on the next iclog and
2474 * mark this iclog as completely taken? In the case where we switch
2475 * iclogs (to mark it taken), this particular iclog will release/sync
2476 * to disk in xlog_write().
2477 */
2478 if (len <= iclog->ic_size - iclog->ic_offset) {
2479 *continued_write = 0;
2480 iclog->ic_offset += len;
2481 } else {
2482 *continued_write = 1;
2483 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2484 }
2485 *iclogp = iclog;
2486
2487 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002488 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
2490 *logoffsetp = log_offset;
2491 return 0;
2492} /* xlog_state_get_iclog_space */
2493
2494/*
2495 * Atomically get the log space required for a log ticket.
2496 *
2497 * Once a ticket gets put onto the reserveq, it will only return after
2498 * the needed reservation is satisfied.
2499 */
2500STATIC int
2501xlog_grant_log_space(xlog_t *log,
2502 xlog_ticket_t *tic)
2503{
2504 int free_bytes;
2505 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506#ifdef DEBUG
2507 xfs_lsn_t tail_lsn;
2508#endif
2509
2510
2511#ifdef DEBUG
2512 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2513 panic("grant Recovery problem");
2514#endif
2515
2516 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002517 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002518
2519 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 /* something is already sleeping; insert new transaction at end */
Dave Chinner10547942010-12-21 12:02:25 +11002522 if (!list_empty(&log->l_reserveq)) {
2523 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002524
2525 trace_xfs_log_grant_sleep1(log, tic);
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 /*
2528 * Gotta check this before going to sleep, while we're
2529 * holding the grant lock.
2530 */
2531 if (XLOG_FORCED_SHUTDOWN(log))
2532 goto error_return;
2533
2534 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002535 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 /*
2537 * If we got an error, and the filesystem is shutting down,
2538 * we'll catch it down below. So just continue...
2539 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002540 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002541 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2544 need_bytes = tic->t_unit_res*tic->t_ocnt;
2545 else
2546 need_bytes = tic->t_unit_res;
2547
2548redo:
2549 if (XLOG_FORCED_SHUTDOWN(log))
2550 goto error_return;
2551
2552 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2553 log->l_grant_reserve_bytes);
2554 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002555 if (list_empty(&tic->t_queue))
2556 list_add_tail(&tic->t_queue, &log->l_reserveq);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002557
2558 trace_xfs_log_grant_sleep2(log, tic);
2559
Dave Chinner9d7fef72009-04-06 18:42:59 +02002560 spin_unlock(&log->l_grant_lock);
2561 xlog_grant_push_ail(log->l_mp, need_bytes);
2562 spin_lock(&log->l_grant_lock);
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002565 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Dave Chinner9d7fef72009-04-06 18:42:59 +02002567 spin_lock(&log->l_grant_lock);
2568 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002571 trace_xfs_log_grant_wake2(log, tic);
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002574 }
2575
2576 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002579 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580#ifdef DEBUG
2581 tail_lsn = log->l_tail_lsn;
2582 /*
2583 * Check to make sure the grant write head didn't just over lap the
2584 * tail. If the cycles are the same, we can't be overlapping.
2585 * Otherwise, make sure that the cycles differ by exactly one and
2586 * check the byte count.
2587 */
2588 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2589 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2590 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2591 }
2592#endif
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002593 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002595 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 return 0;
2597
2598 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002599 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002600 trace_xfs_log_grant_error(log, tic);
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 /*
2603 * If we are failing, make sure the ticket doesn't have any
2604 * current reservations. We don't want to add this back when
2605 * the ticket/transaction gets cancelled.
2606 */
2607 tic->t_curr_res = 0;
2608 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002609 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 return XFS_ERROR(EIO);
2611} /* xlog_grant_log_space */
2612
2613
2614/*
2615 * Replenish the byte reservation required by moving the grant write head.
2616 *
2617 *
2618 */
2619STATIC int
2620xlog_regrant_write_log_space(xlog_t *log,
2621 xlog_ticket_t *tic)
2622{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 int free_bytes, need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624#ifdef DEBUG
2625 xfs_lsn_t tail_lsn;
2626#endif
2627
2628 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002629 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634#ifdef DEBUG
2635 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2636 panic("regrant Recovery problem");
2637#endif
2638
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002639 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002640
2641 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 if (XLOG_FORCED_SHUTDOWN(log))
2644 goto error_return;
2645
2646 /* If there are other waiters on the queue then give them a
2647 * chance at logspace before us. Wake up the first waiters,
2648 * if we do not wake up all the waiters then go to sleep waiting
2649 * for more free space, otherwise try to get some space for
2650 * this transaction.
2651 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002652 need_bytes = tic->t_unit_res;
Dave Chinner10547942010-12-21 12:02:25 +11002653 if (!list_empty(&log->l_writeq)) {
2654 struct xlog_ticket *ntic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2656 log->l_grant_write_bytes);
Dave Chinner10547942010-12-21 12:02:25 +11002657 list_for_each_entry(ntic, &log->l_writeq, t_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2659
2660 if (free_bytes < ntic->t_unit_res)
2661 break;
2662 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002663 sv_signal(&ntic->t_wait);
Dave Chinner10547942010-12-21 12:02:25 +11002664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Dave Chinner10547942010-12-21 12:02:25 +11002666 if (ntic != list_first_entry(&log->l_writeq,
2667 struct xlog_ticket, t_queue)) {
2668 if (list_empty(&tic->t_queue))
2669 list_add_tail(&tic->t_queue, &log->l_writeq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002671 trace_xfs_log_regrant_write_sleep1(log, tic);
2672
Dave Chinner9d7fef72009-04-06 18:42:59 +02002673 spin_unlock(&log->l_grant_lock);
2674 xlog_grant_push_ail(log->l_mp, need_bytes);
2675 spin_lock(&log->l_grant_lock);
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002678 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 &log->l_grant_lock, s);
2680
2681 /* If we're shutting down, this tic is already
2682 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002683 spin_lock(&log->l_grant_lock);
2684 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002687 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
2689 }
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691redo:
2692 if (XLOG_FORCED_SHUTDOWN(log))
2693 goto error_return;
2694
2695 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2696 log->l_grant_write_bytes);
2697 if (free_bytes < need_bytes) {
Dave Chinner10547942010-12-21 12:02:25 +11002698 if (list_empty(&tic->t_queue))
2699 list_add_tail(&tic->t_queue, &log->l_writeq);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002700 spin_unlock(&log->l_grant_lock);
2701 xlog_grant_push_ail(log->l_mp, need_bytes);
2702 spin_lock(&log->l_grant_lock);
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002705 trace_xfs_log_regrant_write_sleep2(log, tic);
2706
David Chinner12017fa2008-08-13 16:34:31 +10002707 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002710 spin_lock(&log->l_grant_lock);
2711 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002714 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 goto redo;
Dave Chinner10547942010-12-21 12:02:25 +11002716 }
2717
2718 list_del_init(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002720 /* we've got enough space */
2721 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722#ifdef DEBUG
2723 tail_lsn = log->l_tail_lsn;
2724 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2725 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2726 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2727 }
2728#endif
2729
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002730 trace_xfs_log_regrant_write_exit(log, tic);
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002733 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736
2737 error_return:
Dave Chinner10547942010-12-21 12:02:25 +11002738 list_del_init(&tic->t_queue);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002739 trace_xfs_log_regrant_write_error(log, tic);
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 /*
2742 * If we are failing, make sure the ticket doesn't have any
2743 * current reservations. We don't want to add this back when
2744 * the ticket/transaction gets cancelled.
2745 */
2746 tic->t_curr_res = 0;
2747 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002748 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return XFS_ERROR(EIO);
2750} /* xlog_regrant_write_log_space */
2751
2752
2753/* The first cnt-1 times through here we don't need to
2754 * move the grant write head because the permanent
2755 * reservation has reserved cnt times the unit amount.
2756 * Release part of current permanent unit reservation and
2757 * reset current reservation to be one units worth. Also
2758 * move grant reservation head forward.
2759 */
2760STATIC void
2761xlog_regrant_reserve_log_space(xlog_t *log,
2762 xlog_ticket_t *ticket)
2763{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002764 trace_xfs_log_regrant_reserve_enter(log, ticket);
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 if (ticket->t_cnt > 0)
2767 ticket->t_cnt--;
2768
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002769 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002770 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002772 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002773
2774 trace_xfs_log_regrant_reserve_sub(log, ticket);
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 xlog_verify_grant_head(log, 1);
2777
2778 /* just return if we still have some of the pre-reserved space */
2779 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002780 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return;
2782 }
2783
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002784 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002785
2786 trace_xfs_log_regrant_reserve_exit(log, ticket);
2787
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002789 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002791 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792} /* xlog_regrant_reserve_log_space */
2793
2794
2795/*
2796 * Give back the space left from a reservation.
2797 *
2798 * All the information we need to make a correct determination of space left
2799 * is present. For non-permanent reservations, things are quite easy. The
2800 * count should have been decremented to zero. We only need to deal with the
2801 * space remaining in the current reservation part of the ticket. If the
2802 * ticket contains a permanent reservation, there may be left over space which
2803 * needs to be released. A count of N means that N-1 refills of the current
2804 * reservation can be done before we need to ask for more space. The first
2805 * one goes to fill up the first current reservation. Once we run out of
2806 * space, the count will stay at zero and the only space remaining will be
2807 * in the current reservation field.
2808 */
2809STATIC void
2810xlog_ungrant_log_space(xlog_t *log,
2811 xlog_ticket_t *ticket)
2812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 if (ticket->t_cnt > 0)
2814 ticket->t_cnt--;
2815
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002816 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002817 trace_xfs_log_ungrant_enter(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002819 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002821 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 /* If this is a permanent reservation ticket, we may be able to free
2824 * up more space based on the remaining count.
2825 */
2826 if (ticket->t_cnt > 0) {
2827 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002828 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 }
2830
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002831 trace_xfs_log_ungrant_exit(log, ticket);
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002834 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 xfs_log_move_tail(log->l_mp, 1);
2836} /* xlog_ungrant_log_space */
2837
2838
2839/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 * Flush iclog to disk if this is the last reference to the given iclog and
2841 * the WANT_SYNC bit is set.
2842 *
2843 * When this function is entered, the iclog is not necessarily in the
2844 * WANT_SYNC state. It may be sitting around waiting to get filled.
2845 *
2846 *
2847 */
David Chinnera8272ce2007-11-23 16:28:09 +11002848STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002849xlog_state_release_iclog(
2850 xlog_t *log,
2851 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 int sync = 0; /* do we sync? */
2854
David Chinner155cc6b2008-03-06 13:44:14 +11002855 if (iclog->ic_state & XLOG_STATE_IOERROR)
2856 return XFS_ERROR(EIO);
2857
2858 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2859 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2860 return 0;
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002863 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 return XFS_ERROR(EIO);
2865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2867 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2868
David Chinner155cc6b2008-03-06 13:44:14 +11002869 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002870 /* update tail before writing to iclog */
2871 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 sync++;
2873 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002874 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2876 /* cycle incremented when incrementing curr_block */
2877 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002878 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
2880 /*
2881 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002882 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2884 * this iclog has consistent data, so we ignore IOERROR
2885 * flags after this point.
2886 */
David Chinnerb5893342008-03-06 13:44:06 +11002887 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890} /* xlog_state_release_iclog */
2891
2892
2893/*
2894 * This routine will mark the current iclog in the ring as WANT_SYNC
2895 * and move the current iclog pointer to the next iclog in the ring.
2896 * When this routine is called from xlog_state_get_iclog_space(), the
2897 * exact size of the iclog has not yet been determined. All we know is
2898 * that every data block. We have run out of space in this log record.
2899 */
2900STATIC void
2901xlog_state_switch_iclogs(xlog_t *log,
2902 xlog_in_core_t *iclog,
2903 int eventual_size)
2904{
2905 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2906 if (!eventual_size)
2907 eventual_size = iclog->ic_offset;
2908 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002909 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 log->l_prev_block = log->l_curr_block;
2911 log->l_prev_cycle = log->l_curr_cycle;
2912
2913 /* roll log?: ic_offset changed later */
2914 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2915
2916 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002917 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 log->l_mp->m_sb.sb_logsunit > 1) {
2919 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2920 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2921 }
2922
2923 if (log->l_curr_block >= log->l_logBBsize) {
2924 log->l_curr_cycle++;
2925 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2926 log->l_curr_cycle++;
2927 log->l_curr_block -= log->l_logBBsize;
2928 ASSERT(log->l_curr_block >= 0);
2929 }
2930 ASSERT(iclog == log->l_iclog);
2931 log->l_iclog = iclog->ic_next;
2932} /* xlog_state_switch_iclogs */
2933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934/*
2935 * Write out all data in the in-core log as of this exact moment in time.
2936 *
2937 * Data may be written to the in-core log during this call. However,
2938 * we don't guarantee this data will be written out. A change from past
2939 * implementation means this routine will *not* write out zero length LRs.
2940 *
2941 * Basically, we try and perform an intelligent scan of the in-core logs.
2942 * If we determine there is no flushable data, we just return. There is no
2943 * flushable data if:
2944 *
2945 * 1. the current iclog is active and has no data; the previous iclog
2946 * is in the active or dirty state.
2947 * 2. the current iclog is drity, and the previous iclog is in the
2948 * active or dirty state.
2949 *
David Chinner12017fa2008-08-13 16:34:31 +10002950 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 *
2952 * 1. the current iclog is not in the active nor dirty state.
2953 * 2. the current iclog dirty, and the previous iclog is not in the
2954 * active nor dirty state.
2955 * 3. the current iclog is active, and there is another thread writing
2956 * to this particular iclog.
2957 * 4. a) the current iclog is active and has no other writers
2958 * b) when we return from flushing out this iclog, it is still
2959 * not in the active nor dirty state.
2960 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002961int
2962_xfs_log_force(
2963 struct xfs_mount *mp,
2964 uint flags,
2965 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002967 struct log *log = mp->m_log;
2968 struct xlog_in_core *iclog;
2969 xfs_lsn_t lsn;
2970
2971 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Dave Chinnera44f13e2010-08-24 11:40:03 +10002973 if (log->l_cilp)
2974 xlog_cil_force(log);
Dave Chinner71e330b2010-05-21 14:37:18 +10002975
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002976 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 iclog = log->l_iclog;
2979 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002980 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 return XFS_ERROR(EIO);
2982 }
2983
2984 /* If the head iclog is not active nor dirty, we just attach
2985 * ourselves to the head and go to sleep.
2986 */
2987 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2988 iclog->ic_state == XLOG_STATE_DIRTY) {
2989 /*
2990 * If the head is dirty or (active and empty), then
2991 * we need to look at the previous iclog. If the previous
2992 * iclog is active or dirty we are done. There is nothing
2993 * to sync out. Otherwise, we attach ourselves to the
2994 * previous iclog and go to sleep.
2995 */
2996 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002997 (atomic_read(&iclog->ic_refcnt) == 0
2998 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 iclog = iclog->ic_prev;
3000 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3001 iclog->ic_state == XLOG_STATE_DIRTY)
3002 goto no_sleep;
3003 else
3004 goto maybe_sleep;
3005 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003006 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 /* We are the only one with access to this
3008 * iclog. Flush it out now. There should
3009 * be a roundoff of zero to show that someone
3010 * has already taken care of the roundoff from
3011 * the previous sync.
3012 */
David Chinner155cc6b2008-03-06 13:44:14 +11003013 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003014 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003016 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 if (xlog_state_release_iclog(log, iclog))
3019 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003020
3021 if (log_flushed)
3022 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003023 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003024 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 iclog->ic_state != XLOG_STATE_DIRTY)
3026 goto maybe_sleep;
3027 else
3028 goto no_sleep;
3029 } else {
3030 /* Someone else is writing to this iclog.
3031 * Use its call to flush out the data. However,
3032 * the other thread may not force out this LR,
3033 * so we mark it WANT_SYNC.
3034 */
3035 xlog_state_switch_iclogs(log, iclog, 0);
3036 goto maybe_sleep;
3037 }
3038 }
3039 }
3040
3041 /* By the time we come around again, the iclog could've been filled
3042 * which would give it another lsn. If we have a new lsn, just
3043 * return because the relevant data has been flushed.
3044 */
3045maybe_sleep:
3046 if (flags & XFS_LOG_SYNC) {
3047 /*
3048 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003049 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 * Then we check again after waking up, in case our
3051 * sleep was disturbed by a bad news.
3052 */
3053 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003054 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 return XFS_ERROR(EIO);
3056 }
3057 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003058 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 /*
3060 * No need to grab the log lock here since we're
3061 * only deciding whether or not to return EIO
3062 * and the memory read should be atomic.
3063 */
3064 if (iclog->ic_state & XLOG_STATE_IOERROR)
3065 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003066 if (log_flushed)
3067 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 } else {
3069
3070no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003071 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
3073 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003074}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
3076/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003077 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3078 * about errors or whether the log was flushed or not. This is the normal
3079 * interface to use when trying to unpin items or move the log forward.
3080 */
3081void
3082xfs_log_force(
3083 xfs_mount_t *mp,
3084 uint flags)
3085{
3086 int error;
3087
3088 error = _xfs_log_force(mp, flags, NULL);
3089 if (error) {
3090 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3091 "error %d returned.", error);
3092 }
3093}
3094
3095/*
3096 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 *
3098 * Find in-core log with lsn.
3099 * If it is in the DIRTY state, just return.
3100 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3101 * state and go to sleep or return.
3102 * If it is in any other state, go to sleep or return.
3103 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003104 * Synchronous forces are implemented with a signal variable. All callers
3105 * to force a given lsn to disk will wait on a the sv attached to the
3106 * specific in-core log. When given in-core log finally completes its
3107 * write to disk, that thread will wake up all threads waiting on the
3108 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003110int
3111_xfs_log_force_lsn(
3112 struct xfs_mount *mp,
3113 xfs_lsn_t lsn,
3114 uint flags,
3115 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003117 struct log *log = mp->m_log;
3118 struct xlog_in_core *iclog;
3119 int already_slept = 0;
3120
3121 ASSERT(lsn != 0);
3122
3123 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Dave Chinner71e330b2010-05-21 14:37:18 +10003125 if (log->l_cilp) {
Dave Chinnera44f13e2010-08-24 11:40:03 +10003126 lsn = xlog_cil_force_lsn(log, lsn);
Dave Chinner71e330b2010-05-21 14:37:18 +10003127 if (lsn == NULLCOMMITLSN)
3128 return 0;
3129 }
3130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003132 spin_lock(&log->l_icloglock);
3133 iclog = log->l_iclog;
3134 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003135 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003136 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 }
3138
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003139 do {
3140 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3141 iclog = iclog->ic_next;
3142 continue;
3143 }
3144
3145 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3146 spin_unlock(&log->l_icloglock);
3147 return 0;
3148 }
3149
3150 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3151 /*
3152 * We sleep here if we haven't already slept (e.g.
3153 * this is the first time we've looked at the correct
3154 * iclog buf) and the buffer before us is going to
3155 * be sync'ed. The reason for this is that if we
3156 * are doing sync transactions here, by waiting for
3157 * the previous I/O to complete, we can allow a few
3158 * more transactions into this iclog before we close
3159 * it down.
3160 *
3161 * Otherwise, we mark the buffer WANT_SYNC, and bump
3162 * up the refcnt so we can release the log (which
3163 * drops the ref count). The state switch keeps new
3164 * transaction commits from using this buffer. When
3165 * the current commits finish writing into the buffer,
3166 * the refcount will drop to zero and the buffer will
3167 * go out then.
3168 */
3169 if (!already_slept &&
3170 (iclog->ic_prev->ic_state &
3171 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3172 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3173
3174 XFS_STATS_INC(xs_log_force_sleep);
3175
3176 sv_wait(&iclog->ic_prev->ic_write_wait,
3177 PSWP, &log->l_icloglock, s);
3178 if (log_flushed)
3179 *log_flushed = 1;
3180 already_slept = 1;
3181 goto try_again;
3182 }
David Chinner155cc6b2008-03-06 13:44:14 +11003183 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003185 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 if (xlog_state_release_iclog(log, iclog))
3187 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003188 if (log_flushed)
3189 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003190 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003193 if ((flags & XFS_LOG_SYNC) && /* sleep */
3194 !(iclog->ic_state &
3195 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3196 /*
3197 * Don't wait on completion if we know that we've
3198 * gotten a log write error.
3199 */
3200 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3201 spin_unlock(&log->l_icloglock);
3202 return XFS_ERROR(EIO);
3203 }
3204 XFS_STATS_INC(xs_log_force_sleep);
3205 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3206 /*
3207 * No need to grab the log lock here since we're
3208 * only deciding whether or not to return EIO
3209 * and the memory read should be atomic.
3210 */
3211 if (iclog->ic_state & XLOG_STATE_IOERROR)
3212 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003214 if (log_flushed)
3215 *log_flushed = 1;
3216 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003217 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003219
3220 return 0;
3221 } while (iclog != log->l_iclog);
3222
3223 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003225}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003227/*
3228 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3229 * about errors or whether the log was flushed or not. This is the normal
3230 * interface to use when trying to unpin items or move the log forward.
3231 */
3232void
3233xfs_log_force_lsn(
3234 xfs_mount_t *mp,
3235 xfs_lsn_t lsn,
3236 uint flags)
3237{
3238 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003240 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3241 if (error) {
3242 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3243 "error %d returned.", error);
3244 }
3245}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247/*
3248 * Called when we want to mark the current iclog as being ready to sync to
3249 * disk.
3250 */
David Chinnera8272ce2007-11-23 16:28:09 +11003251STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3253{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003254 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3257 xlog_state_switch_iclogs(log, iclog, 0);
3258 } else {
3259 ASSERT(iclog->ic_state &
3260 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3261 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003262}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
3264
3265/*****************************************************************************
3266 *
3267 * TICKET functions
3268 *
3269 *****************************************************************************
3270 */
3271
3272/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003273 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003275void
3276xfs_log_ticket_put(
3277 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003279 ASSERT(atomic_read(&ticket->t_ref) > 0);
3280 if (atomic_dec_and_test(&ticket->t_ref)) {
3281 sv_destroy(&ticket->t_wait);
3282 kmem_zone_free(xfs_log_ticket_zone, ticket);
3283 }
3284}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003286xlog_ticket_t *
3287xfs_log_ticket_get(
3288 xlog_ticket_t *ticket)
3289{
3290 ASSERT(atomic_read(&ticket->t_ref) > 0);
3291 atomic_inc(&ticket->t_ref);
3292 return ticket;
3293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
Dave Chinner955833c2010-05-14 21:41:46 +10003295xlog_tid_t
3296xfs_log_get_trans_ident(
3297 struct xfs_trans *tp)
3298{
3299 return tp->t_ticket->t_tid;
3300}
3301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003303 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 */
Dave Chinner71e330b2010-05-21 14:37:18 +10003305xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003306xlog_ticket_alloc(
3307 struct log *log,
3308 int unit_bytes,
3309 int cnt,
3310 char client,
Dave Chinner3383ca52010-05-07 11:04:17 +10003311 uint xflags,
3312 int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003314 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003316 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Dave Chinner3383ca52010-05-07 11:04:17 +10003318 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
David Chinnereb01c9c2008-04-10 12:18:46 +10003319 if (!tic)
3320 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
3322 /*
3323 * Permanent reservations have up to 'cnt'-1 active log operations
3324 * in the log. A unit in this case is the amount of space for one
3325 * of these log operations. Normal reservations have a cnt of 1
3326 * and their unit amount is the total amount of space required.
3327 *
3328 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003329 * which occupy space in the on-disk log.
3330 *
3331 * Normal form of a transaction is:
3332 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3333 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3334 *
3335 * We need to account for all the leadup data and trailer data
3336 * around the transaction data.
3337 * And then we need to account for the worst case in terms of using
3338 * more space.
3339 * The worst case will happen if:
3340 * - the placement of the transaction happens to be such that the
3341 * roundoff is at its maximum
3342 * - the transaction data is synced before the commit record is synced
3343 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3344 * Therefore the commit record is in its own Log Record.
3345 * This can happen as the commit record is called with its
3346 * own region to xlog_write().
3347 * This then means that in the worst case, roundoff can happen for
3348 * the commit-rec as well.
3349 * The commit-rec is smaller than padding in this scenario and so it is
3350 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 */
3352
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003353 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003355 unit_bytes += sizeof(xfs_trans_header_t);
3356
3357 /* for start-rec */
3358 unit_bytes += sizeof(xlog_op_header_t);
3359
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003360 /*
3361 * for LR headers - the space for data in an iclog is the size minus
3362 * the space used for the headers. If we use the iclog size, then we
3363 * undercalculate the number of headers required.
3364 *
3365 * Furthermore - the addition of op headers for split-recs might
3366 * increase the space required enough to require more log and op
3367 * headers, so take that into account too.
3368 *
3369 * IMPORTANT: This reservation makes the assumption that if this
3370 * transaction is the first in an iclog and hence has the LR headers
3371 * accounted to it, then the remaining space in the iclog is
3372 * exclusively for this transaction. i.e. if the transaction is larger
3373 * than the iclog, it will be the only thing in that iclog.
3374 * Fundamentally, this means we must pass the entire log vector to
3375 * xlog_write to guarantee this.
3376 */
3377 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3378 num_headers = howmany(unit_bytes, iclog_space);
3379
3380 /* for split-recs - ophdrs added when data split over LRs */
3381 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3382
3383 /* add extra header reservations if we overrun */
3384 while (!num_headers ||
3385 howmany(unit_bytes, iclog_space) > num_headers) {
3386 unit_bytes += sizeof(xlog_op_header_t);
3387 num_headers++;
3388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 unit_bytes += log->l_iclog_hsize * num_headers;
3390
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003391 /* for commit-rec LR header - note: padding will subsume the ophdr */
3392 unit_bytes += log->l_iclog_hsize;
3393
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003394 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003395 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003396 log->l_mp->m_sb.sb_logsunit > 1) {
3397 /* log su roundoff */
3398 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3399 } else {
3400 /* BB roundoff */
3401 unit_bytes += 2*BBSIZE;
3402 }
3403
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003404 atomic_set(&tic->t_ref, 1);
Dave Chinner10547942010-12-21 12:02:25 +11003405 INIT_LIST_HEAD(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 tic->t_unit_res = unit_bytes;
3407 tic->t_curr_res = unit_bytes;
3408 tic->t_cnt = cnt;
3409 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003410 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 tic->t_clientid = client;
3412 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003413 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (xflags & XFS_LOG_PERM_RESERV)
3415 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003416 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Christoph Hellwig0adba532007-08-30 17:21:46 +10003418 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
3423
3424/******************************************************************************
3425 *
3426 * Log debug routines
3427 *
3428 ******************************************************************************
3429 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003430#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431/*
3432 * Make sure that the destination ptr is within the valid data region of
3433 * one of the iclogs. This uses backup pointers stored in a different
3434 * part of the log in case we trash the log structure.
3435 */
3436void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003437xlog_verify_dest_ptr(
3438 struct log *log,
3439 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440{
3441 int i;
3442 int good_ptr = 0;
3443
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003444 for (i = 0; i < log->l_iclog_bufs; i++) {
3445 if (ptr >= log->l_iclog_bak[i] &&
3446 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 good_ptr++;
3448 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003449
3450 if (!good_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
3454STATIC void
3455xlog_verify_grant_head(xlog_t *log, int equals)
3456{
3457 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3458 if (equals)
3459 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3460 else
3461 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3462 } else {
3463 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3464 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3465 }
3466} /* xlog_verify_grant_head */
3467
3468/* check if it will fit */
3469STATIC void
3470xlog_verify_tail_lsn(xlog_t *log,
3471 xlog_in_core_t *iclog,
3472 xfs_lsn_t tail_lsn)
3473{
3474 int blocks;
3475
3476 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3477 blocks =
3478 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3479 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3480 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3481 } else {
3482 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3483
3484 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3485 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3486
3487 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3488 if (blocks < BTOBB(iclog->ic_offset) + 1)
3489 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3490 }
3491} /* xlog_verify_tail_lsn */
3492
3493/*
3494 * Perform a number of checks on the iclog before writing to disk.
3495 *
3496 * 1. Make sure the iclogs are still circular
3497 * 2. Make sure we have a good magic number
3498 * 3. Make sure we don't have magic numbers in the data
3499 * 4. Check fields of each log operation header for:
3500 * A. Valid client identifier
3501 * B. tid ptr value falls in valid ptr space (user space code)
3502 * C. Length in log record header is correct according to the
3503 * individual operation headers within record.
3504 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3505 * log, check the preceding blocks of the physical log to make sure all
3506 * the cycle numbers agree with the current cycle number.
3507 */
3508STATIC void
3509xlog_verify_iclog(xlog_t *log,
3510 xlog_in_core_t *iclog,
3511 int count,
3512 boolean_t syncing)
3513{
3514 xlog_op_header_t *ophead;
3515 xlog_in_core_t *icptr;
3516 xlog_in_core_2_t *xhdr;
3517 xfs_caddr_t ptr;
3518 xfs_caddr_t base_ptr;
3519 __psint_t field_offset;
3520 __uint8_t clientid;
3521 int len, i, j, k, op_len;
3522 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
3524 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003525 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 icptr = log->l_iclog;
3527 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003528 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 xlog_panic("xlog_verify_iclog: invalid ptr");
3530 icptr = icptr->ic_next;
3531 }
3532 if (icptr != log->l_iclog)
3533 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003534 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003537 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 xlog_panic("xlog_verify_iclog: invalid magic num");
3539
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003540 ptr = (xfs_caddr_t) &iclog->ic_header;
3541 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003543 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 xlog_panic("xlog_verify_iclog: unexpected magic num");
3545 }
3546
3547 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003548 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 ptr = iclog->ic_datap;
3550 base_ptr = ptr;
3551 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003552 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 for (i = 0; i < len; i++) {
3554 ophead = (xlog_op_header_t *)ptr;
3555
3556 /* clientid is only 1 byte */
3557 field_offset = (__psint_t)
3558 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3559 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3560 clientid = ophead->oh_clientid;
3561 } else {
3562 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3563 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3564 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3565 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003566 clientid = xlog_get_client_id(
3567 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003569 clientid = xlog_get_client_id(
3570 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 }
3572 }
3573 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003574 cmn_err(CE_WARN, "xlog_verify_iclog: "
3575 "invalid clientid %d op 0x%p offset 0x%lx",
3576 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
3578 /* check length */
3579 field_offset = (__psint_t)
3580 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3581 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003582 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 } else {
3584 idx = BTOBBT((__psint_t)&ophead->oh_len -
3585 (__psint_t)iclog->ic_datap);
3586 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3587 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3588 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003589 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003591 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 }
3593 }
3594 ptr += sizeof(xlog_op_header_t) + op_len;
3595 }
3596} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
3599/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003600 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 */
3602STATIC int
3603xlog_state_ioerror(
3604 xlog_t *log)
3605{
3606 xlog_in_core_t *iclog, *ic;
3607
3608 iclog = log->l_iclog;
3609 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3610 /*
3611 * Mark all the incore logs IOERROR.
3612 * From now on, no log flushes will result.
3613 */
3614 ic = iclog;
3615 do {
3616 ic->ic_state = XLOG_STATE_IOERROR;
3617 ic = ic->ic_next;
3618 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 }
3621 /*
3622 * Return non-zero, if state transition has already happened.
3623 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003624 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625}
3626
3627/*
3628 * This is called from xfs_force_shutdown, when we're forcibly
3629 * shutting down the filesystem, typically because of an IO error.
3630 * Our main objectives here are to make sure that:
3631 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3632 * parties to find out, 'atomically'.
3633 * b. those who're sleeping on log reservations, pinned objects and
3634 * other resources get woken up, and be told the bad news.
3635 * c. nothing new gets queued up after (a) and (b) are done.
3636 * d. if !logerror, flush the iclogs to disk, then seal them off
3637 * for business.
Dave Chinner9da1ab12010-05-17 15:51:59 +10003638 *
3639 * Note: for delayed logging the !logerror case needs to flush the regions
3640 * held in memory out to the iclogs before flushing them to disk. This needs
3641 * to be done before the log is marked as shutdown, otherwise the flush to the
3642 * iclogs will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 */
3644int
3645xfs_log_force_umount(
3646 struct xfs_mount *mp,
3647 int logerror)
3648{
3649 xlog_ticket_t *tic;
3650 xlog_t *log;
3651 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
3653 log = mp->m_log;
3654
3655 /*
3656 * If this happens during log recovery, don't worry about
3657 * locking; the log isn't open for business yet.
3658 */
3659 if (!log ||
3660 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3661 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003662 if (mp->m_sb_bp)
3663 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003664 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 }
3666
3667 /*
3668 * Somebody could've already done the hard work for us.
3669 * No need to get locks for this.
3670 */
3671 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3672 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003673 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
3675 retval = 0;
Dave Chinner9da1ab12010-05-17 15:51:59 +10003676
3677 /*
3678 * Flush the in memory commit item list before marking the log as
3679 * being shut down. We need to do it in this order to ensure all the
3680 * completed transactions are flushed to disk with the xfs_log_force()
3681 * call below.
3682 */
3683 if (!logerror && (mp->m_flags & XFS_MOUNT_DELAYLOG))
Dave Chinnera44f13e2010-08-24 11:40:03 +10003684 xlog_cil_force(log);
Dave Chinner9da1ab12010-05-17 15:51:59 +10003685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 /*
3687 * We must hold both the GRANT lock and the LOG lock,
3688 * before we mark the filesystem SHUTDOWN and wake
3689 * everybody up to tell the bad news.
3690 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003691 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003692 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003694 if (mp->m_sb_bp)
3695 XFS_BUF_DONE(mp->m_sb_bp);
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 /*
3698 * This flag is sort of redundant because of the mount flag, but
3699 * it's good to maintain the separation between the log and the rest
3700 * of XFS.
3701 */
3702 log->l_flags |= XLOG_IO_ERROR;
3703
3704 /*
3705 * If we hit a log error, we want to mark all the iclogs IOERROR
3706 * while we're still holding the loglock.
3707 */
3708 if (logerror)
3709 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003710 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712 /*
Dave Chinner10547942010-12-21 12:02:25 +11003713 * We don't want anybody waiting for log reservations after this. That
3714 * means we have to wake up everybody queued up on reserveq as well as
3715 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3716 * we don't enqueue anything once the SHUTDOWN flag is set, and this
3717 * action is protected by the GRANTLOCK.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 */
Dave Chinner10547942010-12-21 12:02:25 +11003719 list_for_each_entry(tic, &log->l_reserveq, t_queue)
3720 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Dave Chinner10547942010-12-21 12:02:25 +11003722 list_for_each_entry(tic, &log->l_writeq, t_queue)
3723 sv_signal(&tic->t_wait);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003724 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003726 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 ASSERT(!logerror);
3728 /*
3729 * Force the incore logs to disk before shutting the
3730 * log down completely.
3731 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003732 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3733
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003734 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003736 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 }
3738 /*
3739 * Wake up everybody waiting on xfs_log_force.
3740 * Callback all log item committed functions as if the
3741 * log writes were completed.
3742 */
3743 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3744
3745#ifdef XFSERRORDEBUG
3746 {
3747 xlog_in_core_t *iclog;
3748
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003749 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 iclog = log->l_iclog;
3751 do {
3752 ASSERT(iclog->ic_callback == 0);
3753 iclog = iclog->ic_next;
3754 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003755 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 }
3757#endif
3758 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003759 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760}
3761
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003762STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763xlog_iclogs_empty(xlog_t *log)
3764{
3765 xlog_in_core_t *iclog;
3766
3767 iclog = log->l_iclog;
3768 do {
3769 /* endianness does not matter here, zero is zero in
3770 * any language.
3771 */
3772 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 iclog = iclog->ic_next;
3775 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003776 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777}