blob: 1efb303d3aaf3a621d23400e633c413f4e06fade [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_sb.h"
26#include "xfs_ag.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dmapi.h"
29#include "xfs_mount.h"
30#include "xfs_error.h"
31#include "xfs_log_priv.h"
32#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_log_recover.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_trans_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_dir2_sf.h"
39#include "xfs_attr_sf.h"
40#include "xfs_dinode.h"
41#include "xfs_inode.h"
42#include "xfs_rw.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
David Chinnereb01c9c2008-04-10 12:18:46 +100045kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* Local miscellaneous function prototypes */
Dave Chinner55b66332010-03-23 11:43:17 +110048STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 xlog_in_core_t **, xfs_lsn_t *);
50STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
51 xfs_buftarg_t *log_target,
52 xfs_daddr_t blk_offset,
53 int num_bblks);
54STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes);
55STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
Nathan Scottc41564b2006-03-29 08:55:14 +100056STATIC void xlog_dealloc_log(xlog_t *log);
Dave Chinner55b66332010-03-23 11:43:17 +110057STATIC int xlog_write(struct log *log, struct xfs_log_vec *log_vector,
58 struct xlog_ticket *tic, xfs_lsn_t *start_lsn,
59 xlog_in_core_t **commit_iclog, uint flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* local state machine functions */
62STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
63STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
64STATIC int xlog_state_get_iclog_space(xlog_t *log,
65 int len,
66 xlog_in_core_t **iclog,
67 xlog_ticket_t *ticket,
68 int *continued_write,
69 int *logoffsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070STATIC int xlog_state_release_iclog(xlog_t *log,
71 xlog_in_core_t *iclog);
72STATIC void xlog_state_switch_iclogs(xlog_t *log,
73 xlog_in_core_t *iclog,
74 int eventual_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
76
77/* local functions to manipulate grant head */
78STATIC int xlog_grant_log_space(xlog_t *log,
79 xlog_ticket_t *xtic);
80STATIC void xlog_grant_push_ail(xfs_mount_t *mp,
81 int need_bytes);
82STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
83 xlog_ticket_t *ticket);
84STATIC int xlog_regrant_write_log_space(xlog_t *log,
85 xlog_ticket_t *ticket);
86STATIC void xlog_ungrant_log_space(xlog_t *log,
87 xlog_ticket_t *ticket);
88
89
90/* local ticket functions */
Dave Chinner3383ca52010-05-07 11:04:17 +100091STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log, int unit_bytes, int count,
92 char clientid, uint flags,
93 int alloc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Nathan Scottcfcbbbd2005-11-02 15:12:04 +110095#if defined(DEBUG)
Christoph Hellwige6b1f272010-03-23 11:47:38 +110096STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
98STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
99 int count, boolean_t syncing);
100STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
101 xfs_lsn_t tail_lsn);
102#else
103#define xlog_verify_dest_ptr(a,b)
104#define xlog_verify_grant_head(a,b)
105#define xlog_verify_iclog(a,b,c,d)
106#define xlog_verify_tail_lsn(a,b,c)
107#endif
108
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000109STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100111
112static void
113xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
114{
115 if (*qp) {
116 tic->t_next = (*qp);
117 tic->t_prev = (*qp)->t_prev;
118 (*qp)->t_prev->t_next = tic;
119 (*qp)->t_prev = tic;
120 } else {
121 tic->t_prev = tic->t_next = tic;
122 *qp = tic;
123 }
124
125 tic->t_flags |= XLOG_TIC_IN_Q;
126}
127
128static void
129xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
130{
131 if (tic == tic->t_next) {
132 *qp = NULL;
133 } else {
134 *qp = tic->t_next;
135 tic->t_next->t_prev = tic->t_prev;
136 tic->t_prev->t_next = tic->t_next;
137 }
138
139 tic->t_next = tic->t_prev = NULL;
140 tic->t_flags &= ~XLOG_TIC_IN_Q;
141}
142
143static void
144xlog_grant_sub_space(struct log *log, int bytes)
145{
146 log->l_grant_write_bytes -= bytes;
147 if (log->l_grant_write_bytes < 0) {
148 log->l_grant_write_bytes += log->l_logsize;
149 log->l_grant_write_cycle--;
150 }
151
152 log->l_grant_reserve_bytes -= bytes;
153 if ((log)->l_grant_reserve_bytes < 0) {
154 log->l_grant_reserve_bytes += log->l_logsize;
155 log->l_grant_reserve_cycle--;
156 }
157
158}
159
160static void
161xlog_grant_add_space_write(struct log *log, int bytes)
162{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000163 int tmp = log->l_logsize - log->l_grant_write_bytes;
164 if (tmp > bytes)
165 log->l_grant_write_bytes += bytes;
166 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100167 log->l_grant_write_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000168 log->l_grant_write_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100169 }
170}
171
172static void
173xlog_grant_add_space_reserve(struct log *log, int bytes)
174{
Michael Nishimotod729eae2008-05-19 16:34:20 +1000175 int tmp = log->l_logsize - log->l_grant_reserve_bytes;
176 if (tmp > bytes)
177 log->l_grant_reserve_bytes += bytes;
178 else {
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100179 log->l_grant_reserve_cycle++;
Michael Nishimotod729eae2008-05-19 16:34:20 +1000180 log->l_grant_reserve_bytes = bytes - tmp;
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100181 }
182}
183
184static inline void
185xlog_grant_add_space(struct log *log, int bytes)
186{
187 xlog_grant_add_space_write(log, bytes);
188 xlog_grant_add_space_reserve(log, bytes);
189}
190
Christoph Hellwig0adba532007-08-30 17:21:46 +1000191static void
192xlog_tic_reset_res(xlog_ticket_t *tic)
193{
194 tic->t_res_num = 0;
195 tic->t_res_arr_sum = 0;
196 tic->t_res_num_ophdrs = 0;
197}
198
199static void
200xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
201{
202 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
203 /* add to overflow and start again */
204 tic->t_res_o_flow += tic->t_res_arr_sum;
205 tic->t_res_num = 0;
206 tic->t_res_arr_sum = 0;
207 }
208
209 tic->t_res_arr[tic->t_res_num].r_len = len;
210 tic->t_res_arr[tic->t_res_num].r_type = type;
211 tic->t_res_arr_sum += len;
212 tic->t_res_num++;
213}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
216 * NOTES:
217 *
218 * 1. currblock field gets updated at startup and after in-core logs
219 * marked as with WANT_SYNC.
220 */
221
222/*
223 * This routine is called when a user of a log manager ticket is done with
224 * the reservation. If the ticket was ever used, then a commit record for
225 * the associated transaction is written out as a log operation header with
226 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
227 * a given ticket. If the ticket was one with a permanent reservation, then
228 * a few operations are done differently. Permanent reservation tickets by
229 * default don't release the reservation. They just commit the current
230 * transaction with the belief that the reservation is still needed. A flag
231 * must be passed in before permanent reservations are actually released.
232 * When these type of tickets are not released, they need to be set into
233 * the inited state again. By doing this, a start record will be written
234 * out when the next write occurs.
235 */
236xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000237xfs_log_done(
238 struct xfs_mount *mp,
239 struct xlog_ticket *ticket,
240 struct xlog_in_core **iclog,
241 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000243 struct log *log = mp->m_log;
244 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (XLOG_FORCED_SHUTDOWN(log) ||
247 /*
248 * If nothing was ever written, don't write out commit record.
249 * If we get an error, just continue and give back the log ticket.
250 */
251 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100252 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 lsn = (xfs_lsn_t) -1;
254 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
255 flags |= XFS_LOG_REL_PERM_RESERV;
256 }
257 }
258
259
260 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
261 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000262 trace_xfs_log_done_nonperm(log, ticket);
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000265 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * request has been made to release a permanent reservation.
267 */
268 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100269 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000271 trace_xfs_log_done_perm(log, ticket);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000274 /* If this ticket was a permanent reservation and we aren't
275 * trying to release it, reset the inited flags; so next time
276 * we write, a start record will be written out.
277 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
285 * Attaches a new iclog I/O completion callback routine during
286 * transaction commit. If the log is in error state, a non-zero
287 * return code is handed back and the caller is responsible for
288 * executing the callback at an appropriate time.
289 */
290int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000291xfs_log_notify(
292 struct xfs_mount *mp,
293 struct xlog_in_core *iclog,
294 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000296 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
David Chinner114d23a2008-04-10 12:18:39 +1000298 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
300 if (!abortflg) {
301 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
302 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
303 cb->cb_next = NULL;
304 *(iclog->ic_callback_tail) = cb;
305 iclog->ic_callback_tail = &(cb->cb_next);
306 }
David Chinner114d23a2008-04-10 12:18:39 +1000307 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000309}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000312xfs_log_release_iclog(
313 struct xfs_mount *mp,
314 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000316 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000317 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100318 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 return 0;
322}
323
324/*
325 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
326 * to the reservation.
327 * 2. Potentially, push buffers at tail of log to disk.
328 *
329 * Each reservation is going to reserve extra space for a log record header.
330 * When writes happen to the on-disk log, we don't subtract the length of the
331 * log record header from any reservation. By wasting space in each
332 * reservation, we prevent over allocation problems.
333 */
334int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000335xfs_log_reserve(
336 struct xfs_mount *mp,
337 int unit_bytes,
338 int cnt,
339 struct xlog_ticket **ticket,
340 __uint8_t client,
341 uint flags,
342 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000344 struct log *log = mp->m_log;
345 struct xlog_ticket *internal_ticket;
346 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
349 ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
350
351 if (XLOG_FORCED_SHUTDOWN(log))
352 return XFS_ERROR(EIO);
353
354 XFS_STATS_INC(xs_try_logspace);
355
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (*ticket != NULL) {
358 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000359 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000360
Dave Chinner524ee362010-05-07 11:05:05 +1000361 /*
362 * this is a new transaction on the ticket, so we need to
363 * change the transaction ID so that the next transaction has a
364 * different TID in the log. Just add one to the existing tid
365 * so that we can see chains of rolling transactions in the log
366 * easily.
367 */
368 internal_ticket->t_tid++;
369
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000370 trace_xfs_log_reserve(log, internal_ticket);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
373 retval = xlog_regrant_write_log_space(log, internal_ticket);
374 } else {
375 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100376 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Dave Chinner3383ca52010-05-07 11:04:17 +1000377 client, flags,
378 KM_SLEEP|KM_MAYFAIL);
David Chinnereb01c9c2008-04-10 12:18:46 +1000379 if (!internal_ticket)
380 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000381 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000383
384 trace_xfs_log_reserve(log, internal_ticket);
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 xlog_grant_push_ail(mp,
387 (internal_ticket->t_unit_res *
388 internal_ticket->t_cnt));
389 retval = xlog_grant_log_space(log, internal_ticket);
390 }
391
392 return retval;
393} /* xfs_log_reserve */
394
395
396/*
397 * Mount a log filesystem
398 *
399 * mp - ubiquitous xfs mount point structure
400 * log_target - buftarg of on-disk log device
401 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
402 * num_bblocks - Number of BBSIZE blocks in on-disk log
403 *
404 * Return error or zero.
405 */
406int
David Chinner249a8c12008-02-05 12:13:32 +1100407xfs_log_mount(
408 xfs_mount_t *mp,
409 xfs_buftarg_t *log_target,
410 xfs_daddr_t blk_offset,
411 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
David Chinner249a8c12008-02-05 12:13:32 +1100413 int error;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
416 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
417 else {
418 cmn_err(CE_NOTE,
419 "!Mounting filesystem \"%s\" in no-recovery mode. Filesystem will be inconsistent.",
420 mp->m_fsname);
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000421 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
424 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200425 if (IS_ERR(mp->m_log)) {
426 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100427 goto out;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /*
David Chinner249a8c12008-02-05 12:13:32 +1100431 * Initialize the AIL now we have a log.
432 */
David Chinner249a8c12008-02-05 12:13:32 +1100433 error = xfs_trans_ail_init(mp);
434 if (error) {
435 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100436 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100437 }
David Chinnera9c21c12008-10-30 17:39:35 +1100438 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100439
440 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * skip log recovery on a norecovery mount. pretend it all
442 * just worked.
443 */
444 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100445 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000448 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Eric Sandeen65be6052006-01-11 15:34:19 +1100450 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000453 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (error) {
455 cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100456 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 }
459
460 /* Normal transactions can now occur */
461 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100464
465out_destroy_ail:
466 xfs_trans_ail_destroy(mp);
467out_free_log:
468 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100469out:
David Chinner249a8c12008-02-05 12:13:32 +1100470 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100471}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473/*
474 * Finish the recovery of the file system. This is separate from
475 * the xfs_log_mount() call, because it depends on the code in
476 * xfs_mountfs() to read in the root and real-time bitmap inodes
477 * between calling xfs_log_mount() and here.
478 *
479 * mp - ubiquitous xfs mount point structure
480 */
481int
Christoph Hellwig42490232008-08-13 16:49:32 +1000482xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 int error;
485
486 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000487 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 else {
489 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000490 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492
493 return error;
494}
495
496/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * Final log writes as part of unmount.
498 *
499 * Mark the filesystem clean as unmount happens. Note that during relocation
500 * this routine needs to be executed as part of source-bag while the
501 * deallocation must not be done until source-end.
502 */
503
504/*
505 * Unmount record used to have a string "Unmount filesystem--" in the
506 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
507 * We just write the magic number now since that particular field isn't
508 * currently architecture converted and "nUmount" is a bit foo.
509 * As far as I know, there weren't any dependencies on the old behaviour.
510 */
511
512int
513xfs_log_unmount_write(xfs_mount_t *mp)
514{
515 xlog_t *log = mp->m_log;
516 xlog_in_core_t *iclog;
517#ifdef DEBUG
518 xlog_in_core_t *first_iclog;
519#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000520 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 xfs_lsn_t lsn;
522 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /*
525 * Don't write out unmount record on read-only mounts.
526 * Or, if we are doing a forced umount (typically because of IO errors).
527 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000528 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000531 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000532 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534#ifdef DEBUG
535 first_iclog = iclog = log->l_iclog;
536 do {
537 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
538 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
539 ASSERT(iclog->ic_offset == 0);
540 }
541 iclog = iclog->ic_next;
542 } while (iclog != first_iclog);
543#endif
544 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000545 error = xfs_log_reserve(mp, 600, 1, &tic,
546 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100548 /* the data section must be 32 bit size aligned */
549 struct {
550 __uint16_t magic;
551 __uint16_t pad1;
552 __uint32_t pad2; /* may as well make it 64 bits */
553 } magic = {
554 .magic = XLOG_UNMOUNT_TYPE,
555 };
556 struct xfs_log_iovec reg = {
557 .i_addr = (void *)&magic,
558 .i_len = sizeof(magic),
559 .i_type = XLOG_REG_TYPE_UNMOUNT,
560 };
561 struct xfs_log_vec vec = {
562 .lv_niovecs = 1,
563 .lv_iovecp = &reg,
564 };
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* remove inited flag */
Dave Chinner55b66332010-03-23 11:43:17 +1100567 tic->t_flags = 0;
568 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 NULL, XLOG_UNMOUNT_TRANS);
570 /*
571 * At this point, we're umounting anyway,
572 * so there's no point in transitioning log state
573 * to IOERROR. Just continue...
574 */
575 }
576
577 if (error) {
578 xfs_fs_cmn_err(CE_ALERT, mp,
579 "xfs_log_unmount: unmount record failed");
580 }
581
582
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000583 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100585 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 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 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
592 iclog->ic_state == XLOG_STATE_DIRTY)) {
593 if (!XLOG_FORCED_SHUTDOWN(log)) {
David Chinner12017fa2008-08-13 16:34:31 +1000594 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 &log->l_icloglock, s);
596 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000597 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000600 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000602 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000603 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000604 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100605 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 } else {
608 /*
609 * We're already in forced_shutdown mode, couldn't
610 * even attempt to write out the unmount transaction.
611 *
612 * Go through the motions of sync'ing and releasing
613 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000614 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * be in progress. Do this as a separate section of
616 * code so we'll know if we ever get stuck here that
617 * we're in this odd situation of trying to unmount
618 * a file system that went into forced_shutdown as
619 * the result of an unmount..
620 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000621 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100623 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100626 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000627 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000629 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
632 || iclog->ic_state == XLOG_STATE_DIRTY
633 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
634
David Chinner12017fa2008-08-13 16:34:31 +1000635 sv_wait(&iclog->ic_force_wait, PMEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 &log->l_icloglock, s);
637 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000638 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640 }
641
David Chinner1bb7d6b2008-04-10 12:24:38 +1000642 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643} /* xfs_log_unmount_write */
644
645/*
646 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100647 *
648 * We need to stop the aild from running before we destroy
649 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
651void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100652xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
David Chinner249a8c12008-02-05 12:13:32 +1100654 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000655 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Dave Chinner43f5efc2010-03-23 10:10:00 +1100658void
659xfs_log_item_init(
660 struct xfs_mount *mp,
661 struct xfs_log_item *item,
662 int type,
663 struct xfs_item_ops *ops)
664{
665 item->li_mountp = mp;
666 item->li_ailp = mp->m_ail;
667 item->li_type = type;
668 item->li_ops = ops;
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/*
672 * Write region vectors to log. The write happens using the space reservation
673 * of the ticket (tic). It is not a requirement that all writes for a given
Dave Chinner9b9fc2b72010-03-23 11:21:11 +1100674 * transaction occur with one call to xfs_log_write(). However, it is important
675 * to note that the transaction reservation code makes an assumption about the
676 * number of log headers a transaction requires that may be violated if you
677 * don't pass all the transaction vectors in one call....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
679int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000680xfs_log_write(
681 struct xfs_mount *mp,
682 struct xfs_log_iovec reg[],
683 int nentries,
684 struct xlog_ticket *tic,
685 xfs_lsn_t *start_lsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000687 struct log *log = mp->m_log;
688 int error;
Dave Chinner55b66332010-03-23 11:43:17 +1100689 struct xfs_log_vec vec = {
690 .lv_niovecs = nentries,
691 .lv_iovecp = reg,
692 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (XLOG_FORCED_SHUTDOWN(log))
695 return XFS_ERROR(EIO);
696
Dave Chinner55b66332010-03-23 11:43:17 +1100697 error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000698 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +1000699 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100700 return error;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000701}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703void
704xfs_log_move_tail(xfs_mount_t *mp,
705 xfs_lsn_t tail_lsn)
706{
707 xlog_ticket_t *tic;
708 xlog_t *log = mp->m_log;
709 int need_bytes, free_bytes, cycle, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (XLOG_FORCED_SHUTDOWN(log))
712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (tail_lsn == 0) {
715 /* needed since sync_lsn is 64 bits */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000716 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 tail_lsn = log->l_last_sync_lsn;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000718 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000721 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 /* Also an invalid lsn. 1 implies that we aren't passing in a valid
724 * tail_lsn.
725 */
726 if (tail_lsn != 1) {
727 log->l_tail_lsn = tail_lsn;
728 }
729
730 if ((tic = log->l_write_headq)) {
731#ifdef DEBUG
732 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
733 panic("Recovery problem");
734#endif
735 cycle = log->l_grant_write_cycle;
736 bytes = log->l_grant_write_bytes;
737 free_bytes = xlog_space_left(log, cycle, bytes);
738 do {
739 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
740
741 if (free_bytes < tic->t_unit_res && tail_lsn != 1)
742 break;
743 tail_lsn = 0;
744 free_bytes -= tic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +1000745 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 tic = tic->t_next;
747 } while (tic != log->l_write_headq);
748 }
749 if ((tic = log->l_reserve_headq)) {
750#ifdef DEBUG
751 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
752 panic("Recovery problem");
753#endif
754 cycle = log->l_grant_reserve_cycle;
755 bytes = log->l_grant_reserve_bytes;
756 free_bytes = xlog_space_left(log, cycle, bytes);
757 do {
758 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
759 need_bytes = tic->t_unit_res*tic->t_cnt;
760 else
761 need_bytes = tic->t_unit_res;
762 if (free_bytes < need_bytes && tail_lsn != 1)
763 break;
764 tail_lsn = 0;
765 free_bytes -= need_bytes;
David Chinner12017fa2008-08-13 16:34:31 +1000766 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 tic = tic->t_next;
768 } while (tic != log->l_reserve_headq);
769 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000770 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771} /* xfs_log_move_tail */
772
773/*
774 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000775 * that needs to be covered. To begin the transition to the idle state
776 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
777 * If we are then in a state where covering is needed, the caller is informed
778 * that dummy transactions are required to move the log into the idle state.
779 *
780 * Because this is called as part of the sync process, we should also indicate
781 * that dummy transactions should be issued in anything but the covered or
782 * idle states. This ensures that the log tail is accurately reflected in
783 * the log at the end of the sync, hence if a crash occurrs avoids replay
784 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 */
786int
787xfs_log_need_covered(xfs_mount_t *mp)
788{
David Chinner27d8d5f2008-10-30 17:38:39 +1100789 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
David Chinner92821e22007-05-24 15:26:31 +1000792 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return 0;
794
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000795 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000796 switch (log->l_covered_state) {
797 case XLOG_STATE_COVER_DONE:
798 case XLOG_STATE_COVER_DONE2:
799 case XLOG_STATE_COVER_IDLE:
800 break;
801 case XLOG_STATE_COVER_NEED:
802 case XLOG_STATE_COVER_NEED2:
803 if (!xfs_trans_ail_tail(log->l_ailp) &&
804 xlog_iclogs_empty(log)) {
805 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
806 log->l_covered_state = XLOG_STATE_COVER_DONE;
807 else
808 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000810 /* FALLTHRU */
811 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000813 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000815 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100816 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819/******************************************************************************
820 *
821 * local routines
822 *
823 ******************************************************************************
824 */
825
826/* xfs_trans_tail_ail returns 0 when there is nothing in the list.
827 * The log manager must keep track of the last LR which was committed
828 * to disk. The lsn of this LR will become the new tail_lsn whenever
829 * xfs_trans_tail_ail returns 0. If we don't do this, we run into
830 * the situation where stuff could be written into the log but nothing
831 * was ever in the AIL when asked. Eventually, we panic since the
832 * tail hits the head.
833 *
834 * We may be holding the log iclog lock upon entering this routine.
835 */
836xfs_lsn_t
837xlog_assign_tail_lsn(xfs_mount_t *mp)
838{
839 xfs_lsn_t tail_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 xlog_t *log = mp->m_log;
841
David Chinner5b00f142008-10-30 17:39:00 +1100842 tail_lsn = xfs_trans_ail_tail(mp->m_ail);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000843 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (tail_lsn != 0) {
845 log->l_tail_lsn = tail_lsn;
846 } else {
847 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
848 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +1000849 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 return tail_lsn;
852} /* xlog_assign_tail_lsn */
853
854
855/*
856 * Return the space in the log between the tail and the head. The head
857 * is passed in the cycle/bytes formal parms. In the special case where
858 * the reserve head has wrapped passed the tail, this calculation is no
859 * longer valid. In this case, just return 0 which means there is no space
860 * in the log. This works for all places where this function is called
861 * with the reserve head. Of course, if the write head were to ever
862 * wrap the tail, we should blow up. Rather than catch this case here,
863 * we depend on other ASSERTions in other parts of the code. XXXmiken
864 *
865 * This code also handles the case where the reservation head is behind
866 * the tail. The details of this case are described below, but the end
867 * result is that we return the size of the log as the amount of space left.
868 */
David Chinnera8272ce2007-11-23 16:28:09 +1100869STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870xlog_space_left(xlog_t *log, int cycle, int bytes)
871{
872 int free_bytes;
873 int tail_bytes;
874 int tail_cycle;
875
876 tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
877 tail_cycle = CYCLE_LSN(log->l_tail_lsn);
878 if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
879 free_bytes = log->l_logsize - (bytes - tail_bytes);
880 } else if ((tail_cycle + 1) < cycle) {
881 return 0;
882 } else if (tail_cycle < cycle) {
883 ASSERT(tail_cycle == (cycle - 1));
884 free_bytes = tail_bytes - bytes;
885 } else {
886 /*
887 * The reservation head is behind the tail.
888 * In this case we just want to return the size of the
889 * log as the amount of space left.
890 */
891 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
892 "xlog_space_left: head behind tail\n"
893 " tail_cycle = %d, tail_bytes = %d\n"
894 " GH cycle = %d, GH bytes = %d",
895 tail_cycle, tail_bytes, cycle, bytes);
896 ASSERT(0);
897 free_bytes = log->l_logsize;
898 }
899 return free_bytes;
900} /* xlog_space_left */
901
902
903/*
904 * Log function which is called when an io completes.
905 *
906 * The log manager needs its own routine, in order to control what
907 * happens with the buffer after the write completes.
908 */
909void
910xlog_iodone(xfs_buf_t *bp)
911{
912 xlog_in_core_t *iclog;
913 xlog_t *l;
914 int aborted;
915
916 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
917 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
918 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
919 aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 l = iclog->ic_log;
921
922 /*
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100923 * If the _XFS_BARRIER_FAILED flag was set by a lower
924 * layer, it means the underlying device no longer supports
David Chinner0bfefc42007-05-14 18:24:23 +1000925 * barrier I/O. Warn loudly and turn off barriers.
926 */
Christoph Hellwig73f6aa42008-10-10 17:28:29 +1100927 if (bp->b_flags & _XFS_BARRIER_FAILED) {
928 bp->b_flags &= ~_XFS_BARRIER_FAILED;
David Chinner0bfefc42007-05-14 18:24:23 +1000929 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
930 xfs_fs_cmn_err(CE_WARN, l->l_mp,
931 "xlog_iodone: Barriers are no longer supported"
932 " by device. Disabling barriers\n");
David Chinner0bfefc42007-05-14 18:24:23 +1000933 }
934
935 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 * Race to shutdown the filesystem if we see an error.
937 */
938 if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
939 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
940 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
941 XFS_BUF_STALE(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000942 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /*
944 * This flag will be propagated to the trans-committed
945 * callback routines to let them know that the log-commit
946 * didn't succeed.
947 */
948 aborted = XFS_LI_ABORTED;
949 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
950 aborted = XFS_LI_ABORTED;
951 }
David Chinner3db296f2007-05-14 18:24:16 +1000952
953 /* log I/O is always issued ASYNC */
954 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000956 /*
957 * do not reference the buffer (bp) here as we could race
958 * with it being freed after writing the unmount record to the
959 * log.
960 */
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962} /* xlog_iodone */
963
964/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * Return size of each in-core log record buffer.
966 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200967 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 *
969 * If the filesystem blocksize is too large, we may need to choose a
970 * larger size since the directory code currently logs entire blocks.
971 */
972
973STATIC void
974xlog_get_iclog_buffer_size(xfs_mount_t *mp,
975 xlog_t *log)
976{
977 int size;
978 int xhdrs;
979
Eric Sandeen1cb51252007-08-16 16:24:43 +1000980 if (mp->m_logbufs <= 0)
981 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
982 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100983 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 /*
986 * Buffer size passed in from mount system call.
987 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100988 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 size = log->l_iclog_size = mp->m_logbsize;
990 log->l_iclog_size_log = 0;
991 while (size != 1) {
992 log->l_iclog_size_log++;
993 size >>= 1;
994 }
995
Eric Sandeen62118702008-03-06 13:44:28 +1100996 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200997 /* # headers = size / 32k
998 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 */
1000
1001 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1002 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1003 xhdrs++;
1004 log->l_iclog_hsize = xhdrs << BBSHIFT;
1005 log->l_iclog_heads = xhdrs;
1006 } else {
1007 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1008 log->l_iclog_hsize = BBSIZE;
1009 log->l_iclog_heads = 1;
1010 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001011 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001014 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +10001015 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1016 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* the default log size is 16k or 32k which is one header sector */
1019 log->l_iclog_hsize = BBSIZE;
1020 log->l_iclog_heads = 1;
1021
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001022done:
1023 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001024 if (mp->m_logbufs == 0)
1025 mp->m_logbufs = log->l_iclog_bufs;
1026 if (mp->m_logbsize == 0)
1027 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028} /* xlog_get_iclog_buffer_size */
1029
1030
1031/*
1032 * This routine initializes some of the log structure for a given mount point.
1033 * Its primary purpose is to fill in enough, so recovery can occur. However,
1034 * some other stuff may be filled in too.
1035 */
1036STATIC xlog_t *
1037xlog_alloc_log(xfs_mount_t *mp,
1038 xfs_buftarg_t *log_target,
1039 xfs_daddr_t blk_offset,
1040 int num_bblks)
1041{
1042 xlog_t *log;
1043 xlog_rec_header_t *head;
1044 xlog_in_core_t **iclogp;
1045 xlog_in_core_t *iclog, *prev_iclog=NULL;
1046 xfs_buf_t *bp;
1047 int i;
1048 int iclogsize;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001049 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +10001050 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Dave Chinner644c3562008-11-10 16:50:24 +11001052 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001053 if (!log) {
1054 xlog_warn("XFS: Log allocation failed: No memory!");
1055 goto out;
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 log->l_mp = mp;
1059 log->l_targ = log_target;
1060 log->l_logsize = BBTOB(num_bblks);
1061 log->l_logBBstart = blk_offset;
1062 log->l_logBBsize = num_bblks;
1063 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1064 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1065
1066 log->l_prev_block = -1;
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001067 log->l_tail_lsn = xlog_assign_lsn(1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1069 log->l_last_sync_lsn = log->l_tail_lsn;
1070 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
1071 log->l_grant_reserve_cycle = 1;
1072 log->l_grant_write_cycle = 1;
1073
Dave Chinnera6cb7672009-04-06 18:39:27 +02001074 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001075 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001076 log2_size = mp->m_sb.sb_logsectlog;
1077 if (log2_size < BBSHIFT) {
1078 xlog_warn("XFS: Log sector size too small "
1079 "(0x%x < 0x%x)", log2_size, BBSHIFT);
1080 goto out_free_log;
1081 }
1082
1083 log2_size -= BBSHIFT;
1084 if (log2_size > mp->m_sectbb_log) {
1085 xlog_warn("XFS: Log sector size too large "
1086 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001087 goto out_free_log;
1088 }
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001091 if (log2_size && log->l_logBBstart > 0 &&
1092 !xfs_sb_version_haslogv2(&mp->m_sb)) {
1093
Dave Chinnera6cb7672009-04-06 18:39:27 +02001094 xlog_warn("XFS: log sector size (0x%x) invalid "
Alex Elder69ce58f2010-04-20 17:09:59 +10001095 "for configuration.", log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001096 goto out_free_log;
1097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001099 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 xlog_get_iclog_buffer_size(mp, log);
1102
Dave Chinnera6cb7672009-04-06 18:39:27 +02001103 error = ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001105 if (!bp)
1106 goto out_free_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1109 ASSERT(XFS_BUF_ISBUSY(bp));
1110 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1111 log->l_xbuf = bp;
1112
Eric Sandeen007c61c2007-10-11 17:43:56 +10001113 spin_lock_init(&log->l_icloglock);
1114 spin_lock_init(&log->l_grant_lock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10001115 sv_init(&log->l_flush_wait, 0, "flush_wait");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1118 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1119
1120 iclogp = &log->l_iclog;
1121 /*
1122 * The amount of memory to allocate for the iclog structure is
1123 * rather funky due to the way the structure is defined. It is
1124 * done this way so that we can use different sizes for machines
1125 * with different amounts of memory. See the definition of
1126 * xlog_in_core_t in xfs_log_priv.h for details.
1127 */
1128 iclogsize = log->l_iclog_size;
1129 ASSERT(log->l_iclog_size >= 4096);
1130 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001131 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1132 if (!*iclogp)
1133 goto out_free_iclog;
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 iclog->ic_prev = prev_iclog;
1137 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001138
1139 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
Dave Chinner644c3562008-11-10 16:50:24 +11001140 if (!bp)
1141 goto out_free_iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001142 if (!XFS_BUF_CPSEMA(bp))
1143 ASSERT(0);
1144 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001145 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1146 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001147 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001148#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 head = &iclog->ic_header;
1152 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001153 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1154 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001155 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001156 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001158 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1162 iclog->ic_state = XLOG_STATE_ACTIVE;
1163 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001164 atomic_set(&iclog->ic_refcnt, 0);
1165 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001167 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1170 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
David Chinner12017fa2008-08-13 16:34:31 +10001171 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1172 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 iclogp = &iclog->ic_next;
1175 }
1176 *iclogp = log->l_iclog; /* complete ring */
1177 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1178
1179 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001180
1181out_free_iclog:
1182 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1183 prev_iclog = iclog->ic_next;
1184 if (iclog->ic_bp) {
1185 sv_destroy(&iclog->ic_force_wait);
1186 sv_destroy(&iclog->ic_write_wait);
1187 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001188 }
1189 kmem_free(iclog);
1190 }
1191 spinlock_destroy(&log->l_icloglock);
1192 spinlock_destroy(&log->l_grant_lock);
Dave Chinner644c3562008-11-10 16:50:24 +11001193 xfs_buf_free(log->l_xbuf);
1194out_free_log:
1195 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001196out:
1197 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198} /* xlog_alloc_log */
1199
1200
1201/*
1202 * Write out the commit record of a transaction associated with the given
1203 * ticket. Return the lsn of the commit record.
1204 */
1205STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001206xlog_commit_record(
1207 struct log *log,
1208 struct xlog_ticket *ticket,
1209 struct xlog_in_core **iclog,
1210 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Dave Chinner55b66332010-03-23 11:43:17 +11001212 struct xfs_mount *mp = log->l_mp;
1213 int error;
1214 struct xfs_log_iovec reg = {
1215 .i_addr = NULL,
1216 .i_len = 0,
1217 .i_type = XLOG_REG_TYPE_COMMIT,
1218 };
1219 struct xfs_log_vec vec = {
1220 .lv_niovecs = 1,
1221 .lv_iovecp = &reg,
1222 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001225 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1226 XLOG_COMMIT_TRANS);
1227 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001228 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001229 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001230}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232/*
1233 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1234 * log space. This code pushes on the lsn which would supposedly free up
1235 * the 25% which we want to leave free. We may need to adopt a policy which
1236 * pushes on an lsn which is further along in the log once we reach the high
1237 * water mark. In this manner, we would be creating a low water mark.
1238 */
David Chinnera8272ce2007-11-23 16:28:09 +11001239STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240xlog_grant_push_ail(xfs_mount_t *mp,
1241 int need_bytes)
1242{
1243 xlog_t *log = mp->m_log; /* pointer to the log */
1244 xfs_lsn_t tail_lsn; /* lsn of the log tail */
1245 xfs_lsn_t threshold_lsn = 0; /* lsn we'd like to be at */
1246 int free_blocks; /* free blocks left to write to */
1247 int free_bytes; /* free bytes left to write to */
1248 int threshold_block; /* block in lsn we'd like to be at */
1249 int threshold_cycle; /* lsn cycle we'd like to be at */
1250 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1253
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001254 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 free_bytes = xlog_space_left(log,
1256 log->l_grant_reserve_cycle,
1257 log->l_grant_reserve_bytes);
1258 tail_lsn = log->l_tail_lsn;
1259 free_blocks = BTOBBT(free_bytes);
1260
1261 /*
1262 * Set the threshold for the minimum number of free blocks in the
1263 * log to the maximum of what the caller needs, one quarter of the
1264 * log, and 256 blocks.
1265 */
1266 free_threshold = BTOBB(need_bytes);
1267 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1268 free_threshold = MAX(free_threshold, 256);
1269 if (free_blocks < free_threshold) {
1270 threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1271 threshold_cycle = CYCLE_LSN(tail_lsn);
1272 if (threshold_block >= log->l_logBBsize) {
1273 threshold_block -= log->l_logBBsize;
1274 threshold_cycle += 1;
1275 }
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10001276 threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /* Don't pass in an lsn greater than the lsn of the last
1279 * log record known to be on disk.
1280 */
1281 if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1282 threshold_lsn = log->l_last_sync_lsn;
1283 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001284 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 /*
1287 * Get the transaction layer to kick the dirty buffers out to
1288 * disk asynchronously. No point in trying to do this if
1289 * the filesystem is shutting down.
1290 */
1291 if (threshold_lsn &&
1292 !XLOG_FORCED_SHUTDOWN(log))
David Chinner783a2f62008-10-30 17:39:58 +11001293 xfs_trans_ail_push(log->l_ailp, threshold_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294} /* xlog_grant_push_ail */
1295
Christoph Hellwig873ff552010-01-13 22:17:57 +00001296/*
1297 * The bdstrat callback function for log bufs. This gives us a central
1298 * place to trap bufs in case we get hit by a log I/O error and need to
1299 * shutdown. Actually, in practice, even when we didn't get a log error,
1300 * we transition the iclogs to IOERROR state *after* flushing all existing
1301 * iclogs to disk. This is because we don't want anymore new transactions to be
1302 * started or completed afterwards.
1303 */
1304STATIC int
1305xlog_bdstrat(
1306 struct xfs_buf *bp)
1307{
1308 struct xlog_in_core *iclog;
1309
1310 iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1311 if (iclog->ic_state & XLOG_STATE_IOERROR) {
1312 XFS_BUF_ERROR(bp, EIO);
1313 XFS_BUF_STALE(bp);
1314 xfs_biodone(bp);
1315 /*
1316 * It would seem logical to return EIO here, but we rely on
1317 * the log state machine to propagate I/O errors instead of
1318 * doing it here.
1319 */
1320 return 0;
1321 }
1322
1323 bp->b_flags |= _XBF_RUN_QUEUES;
1324 xfs_buf_iorequest(bp);
1325 return 0;
1326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328/*
1329 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1330 * fashion. Previously, we should have moved the current iclog
1331 * ptr in the log to point to the next available iclog. This allows further
1332 * write to continue while this code syncs out an iclog ready to go.
1333 * Before an in-core log can be written out, the data section must be scanned
1334 * to save away the 1st word of each BBSIZE block into the header. We replace
1335 * it with the current cycle count. Each BBSIZE block is tagged with the
1336 * cycle count because there in an implicit assumption that drives will
1337 * guarantee that entire 512 byte blocks get written at once. In other words,
1338 * we can't have part of a 512 byte block written and part not written. By
1339 * tagging each block, we will know which blocks are valid when recovering
1340 * after an unclean shutdown.
1341 *
1342 * This routine is single threaded on the iclog. No other thread can be in
1343 * this routine with the same iclog. Changing contents of iclog can there-
1344 * fore be done without grabbing the state machine lock. Updating the global
1345 * log will require grabbing the lock though.
1346 *
1347 * The entire log manager uses a logical block numbering scheme. Only
1348 * log_sync (and then only bwrite()) know about the fact that the log may
1349 * not start with block zero on a given device. The log block start offset
1350 * is added immediately before calling bwrite().
1351 */
1352
David Chinnera8272ce2007-11-23 16:28:09 +11001353STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354xlog_sync(xlog_t *log,
1355 xlog_in_core_t *iclog)
1356{
1357 xfs_caddr_t dptr; /* pointer to byte sized element */
1358 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001359 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 uint count; /* byte count of bwrite */
1361 uint count_init; /* initial count before roundup */
1362 int roundoff; /* roundoff to BB or stripe */
1363 int split = 0; /* split write into two regions */
1364 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001365 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001368 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 /* Add for LR header */
1371 count_init = log->l_iclog_hsize + iclog->ic_offset;
1372
1373 /* Round out the log write size */
1374 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1375 /* we have a v2 stripe unit to use */
1376 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1377 } else {
1378 count = BBTOB(BTOBB(count_init));
1379 }
1380 roundoff = count - count_init;
1381 ASSERT(roundoff >= 0);
1382 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1383 roundoff < log->l_mp->m_sb.sb_logsunit)
1384 ||
1385 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1386 roundoff < BBTOB(1)));
1387
1388 /* move grant heads by roundoff in sync */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001389 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11001390 xlog_grant_add_space(log, roundoff);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10001391 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /* put cycle number in every block */
1394 xlog_pack_data(log, iclog, roundoff);
1395
1396 /* real byte length */
1397 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001398 iclog->ic_header.h_len =
1399 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001401 iclog->ic_header.h_len =
1402 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Nathan Scottf5faad72006-07-28 17:04:44 +10001405 bp = iclog->ic_bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1407 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001408 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1411
1412 /* Do we need to split this write into 2 parts? */
1413 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1414 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1415 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1416 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1417 } else {
1418 iclog->ic_bwritecnt = 1;
1419 }
David Chinner511105b2007-05-24 15:21:57 +10001420 XFS_BUF_SET_COUNT(bp, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 XFS_BUF_SET_FSPRIVATE(bp, iclog); /* save for later */
Nathan Scottf5faad72006-07-28 17:04:44 +10001422 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 XFS_BUF_BUSY(bp);
1424 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001425 bp->b_flags |= XBF_LOG_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /*
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001427 * Do an ordered write for the log block.
Nathan Scottf5faad72006-07-28 17:04:44 +10001428 * Its unnecessary to flush the first split block in the log wrap case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 */
Nathan Scottf5faad72006-07-28 17:04:44 +10001430 if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001431 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1434 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1435
1436 xlog_verify_iclog(log, iclog, count, B_TRUE);
1437
1438 /* account for log which doesn't start at block #0 */
1439 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1440 /*
1441 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1442 * is shutting down.
1443 */
1444 XFS_BUF_WRITE(bp);
1445
Christoph Hellwig873ff552010-01-13 22:17:57 +00001446 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1448 XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001449 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001452 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1454 (unsigned long)1);
1455 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1456 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
1457 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1458 (__psint_t)count), split);
1459 XFS_BUF_SET_FSPRIVATE(bp, iclog);
Nathan Scottf5faad72006-07-28 17:04:44 +10001460 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 XFS_BUF_BUSY(bp);
1462 XFS_BUF_ASYNC(bp);
Dave Chinner2ee1aba2009-11-24 18:03:15 +00001463 bp->b_flags |= XBF_LOG_BUFFER;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001464 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1465 XFS_BUF_ORDERED(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 dptr = XFS_BUF_PTR(bp);
1467 /*
1468 * Bump the cycle numbers at the start of each block
1469 * since this part of the buffer is at the start of
1470 * a new cycle. Watch out for the header magic number
1471 * case, though.
1472 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001473 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001474 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001475 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001476 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 dptr += BBSIZE;
1478 }
1479
1480 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1481 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1482
Nathan Scottc41564b2006-03-29 08:55:14 +10001483 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1485 XFS_BUF_WRITE(bp);
Christoph Hellwig873ff552010-01-13 22:17:57 +00001486 if ((error = xlog_bdstrat(bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1488 bp, XFS_BUF_ADDR(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001489 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001492 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493} /* xlog_sync */
1494
1495
1496/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001497 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 */
David Chinnera8272ce2007-11-23 16:28:09 +11001499STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001500xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
1502 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 int i;
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 iclog = log->l_iclog;
1506 for (i=0; i<log->l_iclog_bufs; i++) {
David Chinner12017fa2008-08-13 16:34:31 +10001507 sv_destroy(&iclog->ic_force_wait);
1508 sv_destroy(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001511 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 iclog = next_iclog;
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 spinlock_destroy(&log->l_icloglock);
1515 spinlock_destroy(&log->l_grant_lock);
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 xfs_buf_free(log->l_xbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001519 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001520} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522/*
1523 * Update counters atomically now that memcpy is done.
1524 */
1525/* ARGSUSED */
1526static inline void
1527xlog_state_finish_copy(xlog_t *log,
1528 xlog_in_core_t *iclog,
1529 int record_cnt,
1530 int copy_bytes)
1531{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001532 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001534 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 iclog->ic_offset += copy_bytes;
1536
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001537 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538} /* xlog_state_finish_copy */
1539
1540
1541
1542
1543/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001544 * print out info relating to regions written which consume
1545 * the reservation
1546 */
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001547STATIC void
1548xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1549{
1550 uint i;
1551 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1552
1553 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1554 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1555 "bformat",
1556 "bchunk",
1557 "efi_format",
1558 "efd_format",
1559 "iformat",
1560 "icore",
1561 "iext",
1562 "ibroot",
1563 "ilocal",
1564 "iattr_ext",
1565 "iattr_broot",
1566 "iattr_local",
1567 "qformat",
1568 "dquot",
1569 "quotaoff",
1570 "LR header",
1571 "unmount",
1572 "commit",
1573 "trans header"
1574 };
1575 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1576 "SETATTR_NOT_SIZE",
1577 "SETATTR_SIZE",
1578 "INACTIVE",
1579 "CREATE",
1580 "CREATE_TRUNC",
1581 "TRUNCATE_FILE",
1582 "REMOVE",
1583 "LINK",
1584 "RENAME",
1585 "MKDIR",
1586 "RMDIR",
1587 "SYMLINK",
1588 "SET_DMATTRS",
1589 "GROWFS",
1590 "STRAT_WRITE",
1591 "DIOSTRAT",
1592 "WRITE_SYNC",
1593 "WRITEID",
1594 "ADDAFORK",
1595 "ATTRINVAL",
1596 "ATRUNCATE",
1597 "ATTR_SET",
1598 "ATTR_RM",
1599 "ATTR_FLAG",
1600 "CLEAR_AGI_BUCKET",
1601 "QM_SBCHANGE",
1602 "DUMMY1",
1603 "DUMMY2",
1604 "QM_QUOTAOFF",
1605 "QM_DQALLOC",
1606 "QM_SETQLIM",
1607 "QM_DQCLUSTER",
1608 "QM_QINOCREATE",
1609 "QM_QUOTAOFF_END",
1610 "SB_UNIT",
1611 "FSYNC_TS",
1612 "GROWFSRT_ALLOC",
1613 "GROWFSRT_ZERO",
1614 "GROWFSRT_FREE",
1615 "SWAPEXT"
1616 };
1617
1618 xfs_fs_cmn_err(CE_WARN, mp,
1619 "xfs_log_write: reservation summary:\n"
1620 " trans type = %s (%u)\n"
1621 " unit res = %d bytes\n"
1622 " current res = %d bytes\n"
1623 " total reg = %u bytes (o/flow = %u bytes)\n"
1624 " ophdrs = %u (ophdr space = %u bytes)\n"
1625 " ophdr + reg = %u bytes\n"
1626 " num regions = %u\n",
1627 ((ticket->t_trans_type <= 0 ||
1628 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1629 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1630 ticket->t_trans_type,
1631 ticket->t_unit_res,
1632 ticket->t_curr_res,
1633 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1634 ticket->t_res_num_ophdrs, ophdr_spc,
1635 ticket->t_res_arr_sum +
Tim Shimmin12598452006-01-11 21:02:47 +11001636 ticket->t_res_o_flow + ophdr_spc,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001637 ticket->t_res_num);
1638
1639 for (i = 0; i < ticket->t_res_num; i++) {
Tim Shimmin12598452006-01-11 21:02:47 +11001640 uint r_type = ticket->t_res_arr[i].r_type;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001641 cmn_err(CE_WARN,
1642 "region[%u]: %s - %u bytes\n",
1643 i,
1644 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1645 "bad-rtype" : res_type_str[r_type-1]),
1646 ticket->t_res_arr[i].r_len);
1647 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001648
1649 xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1650 "xfs_log_write: reservation ran out. Need to up reservation");
1651 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001652}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001653
1654/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001655 * Calculate the potential space needed by the log vector. Each region gets
1656 * its own xlog_op_header_t and may need to be double word aligned.
1657 */
1658static int
1659xlog_write_calc_vec_length(
1660 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001661 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001662{
Dave Chinner55b66332010-03-23 11:43:17 +11001663 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001664 int headers = 0;
1665 int len = 0;
1666 int i;
1667
1668 /* acct for start rec of xact */
1669 if (ticket->t_flags & XLOG_TIC_INITED)
1670 headers++;
1671
Dave Chinner55b66332010-03-23 11:43:17 +11001672 for (lv = log_vector; lv; lv = lv->lv_next) {
1673 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001674
Dave Chinner55b66332010-03-23 11:43:17 +11001675 for (i = 0; i < lv->lv_niovecs; i++) {
1676 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1677
1678 len += vecp->i_len;
1679 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1680 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001681 }
1682
1683 ticket->t_res_num_ophdrs += headers;
1684 len += headers * sizeof(struct xlog_op_header);
1685
1686 return len;
1687}
1688
1689/*
1690 * If first write for transaction, insert start record We can't be trying to
1691 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1692 */
1693static int
1694xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001695 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001696 struct xlog_ticket *ticket)
1697{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001698 if (!(ticket->t_flags & XLOG_TIC_INITED))
1699 return 0;
1700
1701 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1702 ophdr->oh_clientid = ticket->t_clientid;
1703 ophdr->oh_len = 0;
1704 ophdr->oh_flags = XLOG_START_TRANS;
1705 ophdr->oh_res2 = 0;
1706
1707 ticket->t_flags &= ~XLOG_TIC_INITED;
1708
1709 return sizeof(struct xlog_op_header);
1710}
1711
1712static xlog_op_header_t *
1713xlog_write_setup_ophdr(
1714 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001715 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001716 struct xlog_ticket *ticket,
1717 uint flags)
1718{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001719 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1720 ophdr->oh_clientid = ticket->t_clientid;
1721 ophdr->oh_res2 = 0;
1722
1723 /* are we copying a commit or unmount record? */
1724 ophdr->oh_flags = flags;
1725
1726 /*
1727 * We've seen logs corrupted with bad transaction client ids. This
1728 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1729 * and shut down the filesystem.
1730 */
1731 switch (ophdr->oh_clientid) {
1732 case XFS_TRANSACTION:
1733 case XFS_VOLUME:
1734 case XFS_LOG:
1735 break;
1736 default:
1737 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1738 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1739 ophdr->oh_clientid, ticket);
1740 return NULL;
1741 }
1742
1743 return ophdr;
1744}
1745
1746/*
1747 * Set up the parameters of the region copy into the log. This has
1748 * to handle region write split across multiple log buffers - this
1749 * state is kept external to this function so that this code can
1750 * can be written in an obvious, self documenting manner.
1751 */
1752static int
1753xlog_write_setup_copy(
1754 struct xlog_ticket *ticket,
1755 struct xlog_op_header *ophdr,
1756 int space_available,
1757 int space_required,
1758 int *copy_off,
1759 int *copy_len,
1760 int *last_was_partial_copy,
1761 int *bytes_consumed)
1762{
1763 int still_to_copy;
1764
1765 still_to_copy = space_required - *bytes_consumed;
1766 *copy_off = *bytes_consumed;
1767
1768 if (still_to_copy <= space_available) {
1769 /* write of region completes here */
1770 *copy_len = still_to_copy;
1771 ophdr->oh_len = cpu_to_be32(*copy_len);
1772 if (*last_was_partial_copy)
1773 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1774 *last_was_partial_copy = 0;
1775 *bytes_consumed = 0;
1776 return 0;
1777 }
1778
1779 /* partial write of region, needs extra log op header reservation */
1780 *copy_len = space_available;
1781 ophdr->oh_len = cpu_to_be32(*copy_len);
1782 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1783 if (*last_was_partial_copy)
1784 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1785 *bytes_consumed += *copy_len;
1786 (*last_was_partial_copy)++;
1787
1788 /* account for new log op header */
1789 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1790 ticket->t_res_num_ophdrs++;
1791
1792 return sizeof(struct xlog_op_header);
1793}
1794
1795static int
1796xlog_write_copy_finish(
1797 struct log *log,
1798 struct xlog_in_core *iclog,
1799 uint flags,
1800 int *record_cnt,
1801 int *data_cnt,
1802 int *partial_copy,
1803 int *partial_copy_len,
1804 int log_offset,
1805 struct xlog_in_core **commit_iclog)
1806{
1807 if (*partial_copy) {
1808 /*
1809 * This iclog has already been marked WANT_SYNC by
1810 * xlog_state_get_iclog_space.
1811 */
1812 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1813 *record_cnt = 0;
1814 *data_cnt = 0;
1815 return xlog_state_release_iclog(log, iclog);
1816 }
1817
1818 *partial_copy = 0;
1819 *partial_copy_len = 0;
1820
1821 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1822 /* no more space in this iclog - push it. */
1823 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1824 *record_cnt = 0;
1825 *data_cnt = 0;
1826
1827 spin_lock(&log->l_icloglock);
1828 xlog_state_want_sync(log, iclog);
1829 spin_unlock(&log->l_icloglock);
1830
1831 if (!commit_iclog)
1832 return xlog_state_release_iclog(log, iclog);
1833 ASSERT(flags & XLOG_COMMIT_TRANS);
1834 *commit_iclog = iclog;
1835 }
1836
1837 return 0;
1838}
1839
1840/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 * Write some region out to in-core log
1842 *
1843 * This will be called when writing externally provided regions or when
1844 * writing out a commit record for a given transaction.
1845 *
1846 * General algorithm:
1847 * 1. Find total length of this write. This may include adding to the
1848 * lengths passed in.
1849 * 2. Check whether we violate the tickets reservation.
1850 * 3. While writing to this iclog
1851 * A. Reserve as much space in this iclog as can get
1852 * B. If this is first write, save away start lsn
1853 * C. While writing this region:
1854 * 1. If first write of transaction, write start record
1855 * 2. Write log operation header (header per region)
1856 * 3. Find out if we can fit entire region into this iclog
1857 * 4. Potentially, verify destination memcpy ptr
1858 * 5. Memcpy (partial) region
1859 * 6. If partial copy, release iclog; otherwise, continue
1860 * copying more regions into current iclog
1861 * 4. Mark want sync bit (in simulation mode)
1862 * 5. Release iclog for potential flush to on-disk log.
1863 *
1864 * ERRORS:
1865 * 1. Panic if reservation is overrun. This should never happen since
1866 * reservation amounts are generated internal to the filesystem.
1867 * NOTES:
1868 * 1. Tickets are single threaded data structures.
1869 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1870 * syncing routine. When a single log_write region needs to span
1871 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1872 * on all log operation writes which don't contain the end of the
1873 * region. The XLOG_END_TRANS bit is used for the in-core log
1874 * operation which contains the end of the continued log_write region.
1875 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1876 * we don't really know exactly how much space will be used. As a result,
1877 * we don't update ic_offset until the end when we know exactly how many
1878 * bytes have been written out.
1879 */
David Chinnera8272ce2007-11-23 16:28:09 +11001880STATIC int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001881xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001882 struct log *log,
1883 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001884 struct xlog_ticket *ticket,
1885 xfs_lsn_t *start_lsn,
1886 struct xlog_in_core **commit_iclog,
1887 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001889 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001890 struct xfs_log_iovec *vecp;
1891 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001892 int len;
1893 int index;
1894 int partial_copy = 0;
1895 int partial_copy_len = 0;
1896 int contwr = 0;
1897 int record_cnt = 0;
1898 int data_cnt = 0;
1899 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001901 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Dave Chinner55b66332010-03-23 11:43:17 +11001903 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner169a7b02010-05-07 11:05:31 +10001904 if (ticket->t_curr_res < len)
Dave Chinner55b66332010-03-23 11:43:17 +11001905 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 ticket->t_curr_res -= len;
1907
Dave Chinner55b66332010-03-23 11:43:17 +11001908 index = 0;
1909 lv = log_vector;
1910 vecp = lv->lv_iovecp;
1911 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001912 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001913 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001915 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1916 &contwr, &log_offset);
1917 if (error)
1918 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001920 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001921 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001923 /* start_lsn is the first lsn written to. That's all we need. */
1924 if (!*start_lsn)
1925 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001927 /*
1928 * This loop writes out as many regions as can fit in the amount
1929 * of space which was allocated by xlog_state_get_iclog_space().
1930 */
Dave Chinner55b66332010-03-23 11:43:17 +11001931 while (lv && index < lv->lv_niovecs) {
1932 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001933 struct xlog_op_header *ophdr;
1934 int start_rec_copy;
1935 int copy_len;
1936 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Dave Chinner55b66332010-03-23 11:43:17 +11001938 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001939 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001941 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1942 if (start_rec_copy) {
1943 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001944 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001945 start_rec_copy);
1946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001948 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1949 if (!ophdr)
1950 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001952 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001953 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001955 len += xlog_write_setup_copy(ticket, ophdr,
1956 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001957 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001958 &copy_off, &copy_len,
1959 &partial_copy,
1960 &partial_copy_len);
1961 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001962
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001963 /* copy region */
1964 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001965 memcpy(ptr, reg->i_addr + copy_off, copy_len);
1966 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001967
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001968 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1969 record_cnt++;
1970 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001972 error = xlog_write_copy_finish(log, iclog, flags,
1973 &record_cnt, &data_cnt,
1974 &partial_copy,
1975 &partial_copy_len,
1976 log_offset,
1977 commit_iclog);
1978 if (error)
1979 return error;
1980
1981 /*
1982 * if we had a partial copy, we need to get more iclog
1983 * space but we don't want to increment the region
1984 * index because there is still more is this region to
1985 * write.
1986 *
1987 * If we completed writing this region, and we flushed
1988 * the iclog (indicated by resetting of the record
1989 * count), then we also need to get more log space. If
1990 * this was the last record, though, we are done and
1991 * can just return.
1992 */
1993 if (partial_copy)
1994 break;
1995
Dave Chinner55b66332010-03-23 11:43:17 +11001996 if (++index == lv->lv_niovecs) {
1997 lv = lv->lv_next;
1998 index = 0;
1999 if (lv)
2000 vecp = lv->lv_iovecp;
2001 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002002 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11002003 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002004 return 0;
2005 break;
2006 }
2007 }
2008 }
2009
2010 ASSERT(len == 0);
2011
2012 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
2013 if (!commit_iclog)
2014 return xlog_state_release_iclog(log, iclog);
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 ASSERT(flags & XLOG_COMMIT_TRANS);
2017 *commit_iclog = iclog;
2018 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021
2022/*****************************************************************************
2023 *
2024 * State Machine functions
2025 *
2026 *****************************************************************************
2027 */
2028
2029/* Clean iclogs starting from the head. This ordering must be
2030 * maintained, so an iclog doesn't become ACTIVE beyond one that
2031 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002032 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 * iclog is trying to sync to disk.
2034 *
2035 * State Change: DIRTY -> ACTIVE
2036 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002037STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038xlog_state_clean_log(xlog_t *log)
2039{
2040 xlog_in_core_t *iclog;
2041 int changed = 0;
2042
2043 iclog = log->l_iclog;
2044 do {
2045 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2046 iclog->ic_state = XLOG_STATE_ACTIVE;
2047 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002048 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /*
2050 * If the number of ops in this iclog indicate it just
2051 * contains the dummy transaction, we can
2052 * change state into IDLE (the second time around).
2053 * Otherwise we should change the state into
2054 * NEED a dummy.
2055 * We don't need to cover the dummy.
2056 */
2057 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002058 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2059 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 changed = 1;
2061 } else {
2062 /*
2063 * We have two dirty iclogs so start over
2064 * This could also be num of ops indicates
2065 * this is not the dummy going out.
2066 */
2067 changed = 2;
2068 }
2069 iclog->ic_header.h_num_logops = 0;
2070 memset(iclog->ic_header.h_cycle_data, 0,
2071 sizeof(iclog->ic_header.h_cycle_data));
2072 iclog->ic_header.h_lsn = 0;
2073 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2074 /* do nothing */;
2075 else
2076 break; /* stop cleaning */
2077 iclog = iclog->ic_next;
2078 } while (iclog != log->l_iclog);
2079
2080 /* log is locked when we are called */
2081 /*
2082 * Change state for the dummy log recording.
2083 * We usually go to NEED. But we go to NEED2 if the changed indicates
2084 * we are done writing the dummy record.
2085 * If we are done with the second dummy recored (DONE2), then
2086 * we go to IDLE.
2087 */
2088 if (changed) {
2089 switch (log->l_covered_state) {
2090 case XLOG_STATE_COVER_IDLE:
2091 case XLOG_STATE_COVER_NEED:
2092 case XLOG_STATE_COVER_NEED2:
2093 log->l_covered_state = XLOG_STATE_COVER_NEED;
2094 break;
2095
2096 case XLOG_STATE_COVER_DONE:
2097 if (changed == 1)
2098 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2099 else
2100 log->l_covered_state = XLOG_STATE_COVER_NEED;
2101 break;
2102
2103 case XLOG_STATE_COVER_DONE2:
2104 if (changed == 1)
2105 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2106 else
2107 log->l_covered_state = XLOG_STATE_COVER_NEED;
2108 break;
2109
2110 default:
2111 ASSERT(0);
2112 }
2113 }
2114} /* xlog_state_clean_log */
2115
2116STATIC xfs_lsn_t
2117xlog_get_lowest_lsn(
2118 xlog_t *log)
2119{
2120 xlog_in_core_t *lsn_log;
2121 xfs_lsn_t lowest_lsn, lsn;
2122
2123 lsn_log = log->l_iclog;
2124 lowest_lsn = 0;
2125 do {
2126 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002127 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if ((lsn && !lowest_lsn) ||
2129 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2130 lowest_lsn = lsn;
2131 }
2132 }
2133 lsn_log = lsn_log->ic_next;
2134 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002135 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
2138
2139STATIC void
2140xlog_state_do_callback(
2141 xlog_t *log,
2142 int aborted,
2143 xlog_in_core_t *ciclog)
2144{
2145 xlog_in_core_t *iclog;
2146 xlog_in_core_t *first_iclog; /* used to know when we've
2147 * processed all iclogs once */
2148 xfs_log_callback_t *cb, *cb_next;
2149 int flushcnt = 0;
2150 xfs_lsn_t lowest_lsn;
2151 int ioerrors; /* counter: iclogs with errors */
2152 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2153 int funcdidcallbacks; /* flag: function did callbacks */
2154 int repeats; /* for issuing console warnings if
2155 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002156 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002158 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 first_iclog = iclog = log->l_iclog;
2160 ioerrors = 0;
2161 funcdidcallbacks = 0;
2162 repeats = 0;
2163
2164 do {
2165 /*
2166 * Scan all iclogs starting with the one pointed to by the
2167 * log. Reset this starting point each time the log is
2168 * unlocked (during callbacks).
2169 *
2170 * Keep looping through iclogs until one full pass is made
2171 * without running any callbacks.
2172 */
2173 first_iclog = log->l_iclog;
2174 iclog = log->l_iclog;
2175 loopdidcallbacks = 0;
2176 repeats++;
2177
2178 do {
2179
2180 /* skip all iclogs in the ACTIVE & DIRTY states */
2181 if (iclog->ic_state &
2182 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2183 iclog = iclog->ic_next;
2184 continue;
2185 }
2186
2187 /*
2188 * Between marking a filesystem SHUTDOWN and stopping
2189 * the log, we do flush all iclogs to disk (if there
2190 * wasn't a log I/O error). So, we do want things to
2191 * go smoothly in case of just a SHUTDOWN w/o a
2192 * LOG_IO_ERROR.
2193 */
2194 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2195 /*
2196 * Can only perform callbacks in order. Since
2197 * this iclog is not in the DONE_SYNC/
2198 * DO_CALLBACK state, we skip the rest and
2199 * just try to clean up. If we set our iclog
2200 * to DO_CALLBACK, we will not process it when
2201 * we retry since a previous iclog is in the
2202 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002203 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 */
2205 if (!(iclog->ic_state &
2206 (XLOG_STATE_DONE_SYNC |
2207 XLOG_STATE_DO_CALLBACK))) {
2208 if (ciclog && (ciclog->ic_state ==
2209 XLOG_STATE_DONE_SYNC)) {
2210 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2211 }
2212 break;
2213 }
2214 /*
2215 * We now have an iclog that is in either the
2216 * DO_CALLBACK or DONE_SYNC states. The other
2217 * states (WANT_SYNC, SYNCING, or CALLBACK were
2218 * caught by the above if and are going to
2219 * clean (i.e. we aren't doing their callbacks)
2220 * see the above if.
2221 */
2222
2223 /*
2224 * We will do one more check here to see if we
2225 * have chased our tail around.
2226 */
2227
2228 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002229 if (lowest_lsn &&
2230 XFS_LSN_CMP(lowest_lsn,
2231 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 iclog = iclog->ic_next;
2233 continue; /* Leave this iclog for
2234 * another thread */
2235 }
2236
2237 iclog->ic_state = XLOG_STATE_CALLBACK;
2238
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002239 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 /* l_last_sync_lsn field protected by
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002242 * l_grant_lock. Don't worry about iclog's lsn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 * No one else can be here except us.
2244 */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002245 spin_lock(&log->l_grant_lock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002246 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2247 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2248 log->l_last_sync_lsn =
2249 be64_to_cpu(iclog->ic_header.h_lsn);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002250 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 } else {
David Chinner114d23a2008-04-10 12:18:39 +10002253 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 ioerrors++;
2255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
David Chinner114d23a2008-04-10 12:18:39 +10002257 /*
2258 * Keep processing entries in the callback list until
2259 * we come around and it is empty. We need to
2260 * atomically see that the list is empty and change the
2261 * state to DIRTY so that we don't miss any more
2262 * callbacks being added.
2263 */
2264 spin_lock(&iclog->ic_callback_lock);
2265 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002266 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 iclog->ic_callback_tail = &(iclog->ic_callback);
2268 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002269 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002272 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 cb_next = cb->cb_next;
2274 cb->cb_func(cb->cb_arg, aborted);
2275 }
David Chinner114d23a2008-04-10 12:18:39 +10002276 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 cb = iclog->ic_callback;
2278 }
2279
2280 loopdidcallbacks++;
2281 funcdidcallbacks++;
2282
David Chinner114d23a2008-04-10 12:18:39 +10002283 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002284 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002285 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2287 iclog->ic_state = XLOG_STATE_DIRTY;
2288
2289 /*
2290 * Transition from DIRTY to ACTIVE if applicable.
2291 * NOP if STATE_IOERROR.
2292 */
2293 xlog_state_clean_log(log);
2294
2295 /* wake up threads waiting in xfs_log_force() */
David Chinner12017fa2008-08-13 16:34:31 +10002296 sv_broadcast(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 iclog = iclog->ic_next;
2299 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002300
2301 if (repeats > 5000) {
2302 flushcnt += repeats;
2303 repeats = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 xfs_fs_cmn_err(CE_WARN, log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002305 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002306 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 } while (!ioerrors && loopdidcallbacks);
2309
2310 /*
2311 * make one last gasp attempt to see if iclogs are being left in
2312 * limbo..
2313 */
2314#ifdef DEBUG
2315 if (funcdidcallbacks) {
2316 first_iclog = iclog = log->l_iclog;
2317 do {
2318 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2319 /*
2320 * Terminate the loop if iclogs are found in states
2321 * which will cause other threads to clean up iclogs.
2322 *
2323 * SYNCING - i/o completion will go through logs
2324 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002325 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 * IOERROR - give up hope all ye who enter here
2327 */
2328 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2329 iclog->ic_state == XLOG_STATE_SYNCING ||
2330 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2331 iclog->ic_state == XLOG_STATE_IOERROR )
2332 break;
2333 iclog = iclog->ic_next;
2334 } while (first_iclog != iclog);
2335 }
2336#endif
2337
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002338 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2339 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002340 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002341
2342 if (wake)
2343 sv_broadcast(&log->l_flush_wait);
2344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346
2347/*
2348 * Finish transitioning this iclog to the dirty state.
2349 *
2350 * Make sure that we completely execute this routine only when this is
2351 * the last call to the iclog. There is a good chance that iclog flushes,
2352 * when we reach the end of the physical log, get turned into 2 separate
2353 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2354 * routine. By using the reference count bwritecnt, we guarantee that only
2355 * the second completion goes through.
2356 *
2357 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002358 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 */
David Chinnera8272ce2007-11-23 16:28:09 +11002360STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361xlog_state_done_syncing(
2362 xlog_in_core_t *iclog,
2363 int aborted)
2364{
2365 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002367 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2370 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002371 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2373
2374
2375 /*
2376 * If we got an error, either on the first buffer, or in the case of
2377 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2378 * and none should ever be attempted to be written to disk
2379 * again.
2380 */
2381 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2382 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002383 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return;
2385 }
2386 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2387 }
2388
2389 /*
2390 * Someone could be sleeping prior to writing out the next
2391 * iclog buffer, we wake them all, one will get to do the
2392 * I/O, the others get to wait for the result.
2393 */
David Chinner12017fa2008-08-13 16:34:31 +10002394 sv_broadcast(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002395 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2397} /* xlog_state_done_syncing */
2398
2399
2400/*
2401 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002402 * sleep. We wait on the flush queue on the head iclog as that should be
2403 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2404 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 *
2406 * The in-core logs are used in a circular fashion. They are not used
2407 * out-of-order even when an iclog past the head is free.
2408 *
2409 * return:
2410 * * log_offset where xlog_write() can start writing into the in-core
2411 * log's data space.
2412 * * in-core log pointer to which xlog_write() should write.
2413 * * boolean indicating this is a continued write to an in-core log.
2414 * If this is the last write, then the in-core log's offset field
2415 * needs to be incremented, depending on the amount of data which
2416 * is copied.
2417 */
David Chinnera8272ce2007-11-23 16:28:09 +11002418STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419xlog_state_get_iclog_space(xlog_t *log,
2420 int len,
2421 xlog_in_core_t **iclogp,
2422 xlog_ticket_t *ticket,
2423 int *continued_write,
2424 int *logoffsetp)
2425{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 int log_offset;
2427 xlog_rec_header_t *head;
2428 xlog_in_core_t *iclog;
2429 int error;
2430
2431restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002432 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002434 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 return XFS_ERROR(EIO);
2436 }
2437
2438 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002439 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002441
2442 /* Wait for log writes to have flushed */
2443 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 goto restart;
2445 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 head = &iclog->ic_header;
2448
David Chinner155cc6b2008-03-06 13:44:14 +11002449 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 log_offset = iclog->ic_offset;
2451
2452 /* On the 1st write to an iclog, figure out lsn. This works
2453 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2454 * committing to. If the offset is set, that's how many blocks
2455 * must be written.
2456 */
2457 if (log_offset == 0) {
2458 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002459 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002460 log->l_iclog_hsize,
2461 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002462 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2463 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002464 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 ASSERT(log->l_curr_block >= 0);
2466 }
2467
2468 /* If there is enough room to write everything, then do it. Otherwise,
2469 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2470 * bit is on, so this will get flushed out. Don't update ic_offset
2471 * until you know exactly how many bytes get copied. Therefore, wait
2472 * until later to update ic_offset.
2473 *
2474 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2475 * can fit into remaining data section.
2476 */
2477 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2478 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2479
Dave Chinner49641f12008-07-11 17:43:55 +10002480 /*
2481 * If I'm the only one writing to this iclog, sync it to disk.
2482 * We need to do an atomic compare and decrement here to avoid
2483 * racing with concurrent atomic_dec_and_lock() calls in
2484 * xlog_state_release_iclog() when there is more than one
2485 * reference to the iclog.
2486 */
2487 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2488 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002489 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002490 error = xlog_state_release_iclog(log, iclog);
2491 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002492 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002494 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
2496 goto restart;
2497 }
2498
2499 /* Do we have enough room to write the full amount in the remainder
2500 * of this iclog? Or must we continue a write on the next iclog and
2501 * mark this iclog as completely taken? In the case where we switch
2502 * iclogs (to mark it taken), this particular iclog will release/sync
2503 * to disk in xlog_write().
2504 */
2505 if (len <= iclog->ic_size - iclog->ic_offset) {
2506 *continued_write = 0;
2507 iclog->ic_offset += len;
2508 } else {
2509 *continued_write = 1;
2510 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2511 }
2512 *iclogp = iclog;
2513
2514 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002515 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 *logoffsetp = log_offset;
2518 return 0;
2519} /* xlog_state_get_iclog_space */
2520
2521/*
2522 * Atomically get the log space required for a log ticket.
2523 *
2524 * Once a ticket gets put onto the reserveq, it will only return after
2525 * the needed reservation is satisfied.
2526 */
2527STATIC int
2528xlog_grant_log_space(xlog_t *log,
2529 xlog_ticket_t *tic)
2530{
2531 int free_bytes;
2532 int need_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533#ifdef DEBUG
2534 xfs_lsn_t tail_lsn;
2535#endif
2536
2537
2538#ifdef DEBUG
2539 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2540 panic("grant Recovery problem");
2541#endif
2542
2543 /* Is there space or do we need to sleep? */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002544 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002545
2546 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548 /* something is already sleeping; insert new transaction at end */
2549 if (log->l_reserve_headq) {
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002550 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002551
2552 trace_xfs_log_grant_sleep1(log, tic);
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 /*
2555 * Gotta check this before going to sleep, while we're
2556 * holding the grant lock.
2557 */
2558 if (XLOG_FORCED_SHUTDOWN(log))
2559 goto error_return;
2560
2561 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002562 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 /*
2564 * If we got an error, and the filesystem is shutting down,
2565 * we'll catch it down below. So just continue...
2566 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002567 trace_xfs_log_grant_wake1(log, tic);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002568 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 }
2570 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2571 need_bytes = tic->t_unit_res*tic->t_ocnt;
2572 else
2573 need_bytes = tic->t_unit_res;
2574
2575redo:
2576 if (XLOG_FORCED_SHUTDOWN(log))
2577 goto error_return;
2578
2579 free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2580 log->l_grant_reserve_bytes);
2581 if (free_bytes < need_bytes) {
2582 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002583 xlog_ins_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002584
2585 trace_xfs_log_grant_sleep2(log, tic);
2586
Dave Chinner9d7fef72009-04-06 18:42:59 +02002587 spin_unlock(&log->l_grant_lock);
2588 xlog_grant_push_ail(log->l_mp, need_bytes);
2589 spin_lock(&log->l_grant_lock);
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002592 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Dave Chinner9d7fef72009-04-06 18:42:59 +02002594 spin_lock(&log->l_grant_lock);
2595 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002598 trace_xfs_log_grant_wake2(log, tic);
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 goto redo;
2601 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002602 xlog_del_ticketq(&log->l_reserve_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 /* we've got enough space */
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002605 xlog_grant_add_space(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606#ifdef DEBUG
2607 tail_lsn = log->l_tail_lsn;
2608 /*
2609 * Check to make sure the grant write head didn't just over lap the
2610 * tail. If the cycles are the same, we can't be overlapping.
2611 * Otherwise, make sure that the cycles differ by exactly one and
2612 * check the byte count.
2613 */
2614 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2615 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2616 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2617 }
2618#endif
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002619 trace_xfs_log_grant_exit(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002621 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 return 0;
2623
2624 error_return:
2625 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002626 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002627
2628 trace_xfs_log_grant_error(log, tic);
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 /*
2631 * If we are failing, make sure the ticket doesn't have any
2632 * current reservations. We don't want to add this back when
2633 * the ticket/transaction gets cancelled.
2634 */
2635 tic->t_curr_res = 0;
2636 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002637 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 return XFS_ERROR(EIO);
2639} /* xlog_grant_log_space */
2640
2641
2642/*
2643 * Replenish the byte reservation required by moving the grant write head.
2644 *
2645 *
2646 */
2647STATIC int
2648xlog_regrant_write_log_space(xlog_t *log,
2649 xlog_ticket_t *tic)
2650{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 int free_bytes, need_bytes;
2652 xlog_ticket_t *ntic;
2653#ifdef DEBUG
2654 xfs_lsn_t tail_lsn;
2655#endif
2656
2657 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002658 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002661 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663#ifdef DEBUG
2664 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2665 panic("regrant Recovery problem");
2666#endif
2667
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002668 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002669
2670 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 if (XLOG_FORCED_SHUTDOWN(log))
2673 goto error_return;
2674
2675 /* If there are other waiters on the queue then give them a
2676 * chance at logspace before us. Wake up the first waiters,
2677 * if we do not wake up all the waiters then go to sleep waiting
2678 * for more free space, otherwise try to get some space for
2679 * this transaction.
2680 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002681 need_bytes = tic->t_unit_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if ((ntic = log->l_write_headq)) {
2683 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2684 log->l_grant_write_bytes);
2685 do {
2686 ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2687
2688 if (free_bytes < ntic->t_unit_res)
2689 break;
2690 free_bytes -= ntic->t_unit_res;
David Chinner12017fa2008-08-13 16:34:31 +10002691 sv_signal(&ntic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 ntic = ntic->t_next;
2693 } while (ntic != log->l_write_headq);
2694
2695 if (ntic != log->l_write_headq) {
2696 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002697 xlog_ins_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002699 trace_xfs_log_regrant_write_sleep1(log, tic);
2700
Dave Chinner9d7fef72009-04-06 18:42:59 +02002701 spin_unlock(&log->l_grant_lock);
2702 xlog_grant_push_ail(log->l_mp, need_bytes);
2703 spin_lock(&log->l_grant_lock);
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 XFS_STATS_INC(xs_sleep_logspace);
David Chinner12017fa2008-08-13 16:34:31 +10002706 sv_wait(&tic->t_wait, PINOD|PLTWAIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 &log->l_grant_lock, s);
2708
2709 /* If we're shutting down, this tic is already
2710 * off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002711 spin_lock(&log->l_grant_lock);
2712 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002715 trace_xfs_log_regrant_write_wake1(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717 }
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719redo:
2720 if (XLOG_FORCED_SHUTDOWN(log))
2721 goto error_return;
2722
2723 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2724 log->l_grant_write_bytes);
2725 if (free_bytes < need_bytes) {
2726 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002727 xlog_ins_ticketq(&log->l_write_headq, tic);
Dave Chinner9d7fef72009-04-06 18:42:59 +02002728 spin_unlock(&log->l_grant_lock);
2729 xlog_grant_push_ail(log->l_mp, need_bytes);
2730 spin_lock(&log->l_grant_lock);
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 XFS_STATS_INC(xs_sleep_logspace);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002733 trace_xfs_log_regrant_write_sleep2(log, tic);
2734
David Chinner12017fa2008-08-13 16:34:31 +10002735 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 /* If we're shutting down, this tic is already off the queue */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002738 spin_lock(&log->l_grant_lock);
2739 if (XLOG_FORCED_SHUTDOWN(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 goto error_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002742 trace_xfs_log_regrant_write_wake2(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 goto redo;
2744 } else if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002745 xlog_del_ticketq(&log->l_write_headq, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002747 /* we've got enough space */
2748 xlog_grant_add_space_write(log, need_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749#ifdef DEBUG
2750 tail_lsn = log->l_tail_lsn;
2751 if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2752 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2753 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2754 }
2755#endif
2756
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002757 trace_xfs_log_regrant_write_exit(log, tic);
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002760 spin_unlock(&log->l_grant_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002761 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763
2764 error_return:
2765 if (tic->t_flags & XLOG_TIC_IN_Q)
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002766 xlog_del_ticketq(&log->l_reserve_headq, tic);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002767
2768 trace_xfs_log_regrant_write_error(log, tic);
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 /*
2771 * If we are failing, make sure the ticket doesn't have any
2772 * current reservations. We don't want to add this back when
2773 * the ticket/transaction gets cancelled.
2774 */
2775 tic->t_curr_res = 0;
2776 tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002777 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return XFS_ERROR(EIO);
2779} /* xlog_regrant_write_log_space */
2780
2781
2782/* The first cnt-1 times through here we don't need to
2783 * move the grant write head because the permanent
2784 * reservation has reserved cnt times the unit amount.
2785 * Release part of current permanent unit reservation and
2786 * reset current reservation to be one units worth. Also
2787 * move grant reservation head forward.
2788 */
2789STATIC void
2790xlog_regrant_reserve_log_space(xlog_t *log,
2791 xlog_ticket_t *ticket)
2792{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002793 trace_xfs_log_regrant_reserve_enter(log, ticket);
2794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 if (ticket->t_cnt > 0)
2796 ticket->t_cnt--;
2797
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002798 spin_lock(&log->l_grant_lock);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002799 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002801 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002802
2803 trace_xfs_log_regrant_reserve_sub(log, ticket);
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 xlog_verify_grant_head(log, 1);
2806
2807 /* just return if we still have some of the pre-reserved space */
2808 if (ticket->t_cnt > 0) {
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002809 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return;
2811 }
2812
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002813 xlog_grant_add_space_reserve(log, ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002814
2815 trace_xfs_log_regrant_reserve_exit(log, ticket);
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 xlog_verify_grant_head(log, 0);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002818 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002820 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821} /* xlog_regrant_reserve_log_space */
2822
2823
2824/*
2825 * Give back the space left from a reservation.
2826 *
2827 * All the information we need to make a correct determination of space left
2828 * is present. For non-permanent reservations, things are quite easy. The
2829 * count should have been decremented to zero. We only need to deal with the
2830 * space remaining in the current reservation part of the ticket. If the
2831 * ticket contains a permanent reservation, there may be left over space which
2832 * needs to be released. A count of N means that N-1 refills of the current
2833 * reservation can be done before we need to ask for more space. The first
2834 * one goes to fill up the first current reservation. Once we run out of
2835 * space, the count will stay at zero and the only space remaining will be
2836 * in the current reservation field.
2837 */
2838STATIC void
2839xlog_ungrant_log_space(xlog_t *log,
2840 xlog_ticket_t *ticket)
2841{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 if (ticket->t_cnt > 0)
2843 ticket->t_cnt--;
2844
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002845 spin_lock(&log->l_grant_lock);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002846 trace_xfs_log_ungrant_enter(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002848 xlog_grant_sub_space(log, ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002850 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 /* If this is a permanent reservation ticket, we may be able to free
2853 * up more space based on the remaining count.
2854 */
2855 if (ticket->t_cnt > 0) {
2856 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Christoph Hellwigdd954c62006-01-11 15:34:50 +11002857 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
2859
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002860 trace_xfs_log_ungrant_exit(log, ticket);
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 xlog_verify_grant_head(log, 1);
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10002863 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 xfs_log_move_tail(log->l_mp, 1);
2865} /* xlog_ungrant_log_space */
2866
2867
2868/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 * Flush iclog to disk if this is the last reference to the given iclog and
2870 * the WANT_SYNC bit is set.
2871 *
2872 * When this function is entered, the iclog is not necessarily in the
2873 * WANT_SYNC state. It may be sitting around waiting to get filled.
2874 *
2875 *
2876 */
David Chinnera8272ce2007-11-23 16:28:09 +11002877STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002878xlog_state_release_iclog(
2879 xlog_t *log,
2880 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 int sync = 0; /* do we sync? */
2883
David Chinner155cc6b2008-03-06 13:44:14 +11002884 if (iclog->ic_state & XLOG_STATE_IOERROR)
2885 return XFS_ERROR(EIO);
2886
2887 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2888 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2889 return 0;
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002892 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return XFS_ERROR(EIO);
2894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2896 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2897
David Chinner155cc6b2008-03-06 13:44:14 +11002898 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002899 /* update tail before writing to iclog */
2900 xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 sync++;
2902 iclog->ic_state = XLOG_STATE_SYNCING;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002903 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2905 /* cycle incremented when incrementing curr_block */
2906 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002907 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 /*
2910 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002911 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2913 * this iclog has consistent data, so we ignore IOERROR
2914 * flags after this point.
2915 */
David Chinnerb5893342008-03-06 13:44:06 +11002916 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919} /* xlog_state_release_iclog */
2920
2921
2922/*
2923 * This routine will mark the current iclog in the ring as WANT_SYNC
2924 * and move the current iclog pointer to the next iclog in the ring.
2925 * When this routine is called from xlog_state_get_iclog_space(), the
2926 * exact size of the iclog has not yet been determined. All we know is
2927 * that every data block. We have run out of space in this log record.
2928 */
2929STATIC void
2930xlog_state_switch_iclogs(xlog_t *log,
2931 xlog_in_core_t *iclog,
2932 int eventual_size)
2933{
2934 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2935 if (!eventual_size)
2936 eventual_size = iclog->ic_offset;
2937 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002938 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 log->l_prev_block = log->l_curr_block;
2940 log->l_prev_cycle = log->l_curr_cycle;
2941
2942 /* roll log?: ic_offset changed later */
2943 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2944
2945 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002946 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 log->l_mp->m_sb.sb_logsunit > 1) {
2948 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2949 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2950 }
2951
2952 if (log->l_curr_block >= log->l_logBBsize) {
2953 log->l_curr_cycle++;
2954 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2955 log->l_curr_cycle++;
2956 log->l_curr_block -= log->l_logBBsize;
2957 ASSERT(log->l_curr_block >= 0);
2958 }
2959 ASSERT(iclog == log->l_iclog);
2960 log->l_iclog = iclog->ic_next;
2961} /* xlog_state_switch_iclogs */
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963/*
2964 * Write out all data in the in-core log as of this exact moment in time.
2965 *
2966 * Data may be written to the in-core log during this call. However,
2967 * we don't guarantee this data will be written out. A change from past
2968 * implementation means this routine will *not* write out zero length LRs.
2969 *
2970 * Basically, we try and perform an intelligent scan of the in-core logs.
2971 * If we determine there is no flushable data, we just return. There is no
2972 * flushable data if:
2973 *
2974 * 1. the current iclog is active and has no data; the previous iclog
2975 * is in the active or dirty state.
2976 * 2. the current iclog is drity, and the previous iclog is in the
2977 * active or dirty state.
2978 *
David Chinner12017fa2008-08-13 16:34:31 +10002979 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 *
2981 * 1. the current iclog is not in the active nor dirty state.
2982 * 2. the current iclog dirty, and the previous iclog is not in the
2983 * active nor dirty state.
2984 * 3. the current iclog is active, and there is another thread writing
2985 * to this particular iclog.
2986 * 4. a) the current iclog is active and has no other writers
2987 * b) when we return from flushing out this iclog, it is still
2988 * not in the active nor dirty state.
2989 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002990int
2991_xfs_log_force(
2992 struct xfs_mount *mp,
2993 uint flags,
2994 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002996 struct log *log = mp->m_log;
2997 struct xlog_in_core *iclog;
2998 xfs_lsn_t lsn;
2999
3000 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003002 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 iclog = log->l_iclog;
3005 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003006 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return XFS_ERROR(EIO);
3008 }
3009
3010 /* If the head iclog is not active nor dirty, we just attach
3011 * ourselves to the head and go to sleep.
3012 */
3013 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3014 iclog->ic_state == XLOG_STATE_DIRTY) {
3015 /*
3016 * If the head is dirty or (active and empty), then
3017 * we need to look at the previous iclog. If the previous
3018 * iclog is active or dirty we are done. There is nothing
3019 * to sync out. Otherwise, we attach ourselves to the
3020 * previous iclog and go to sleep.
3021 */
3022 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11003023 (atomic_read(&iclog->ic_refcnt) == 0
3024 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 iclog = iclog->ic_prev;
3026 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3027 iclog->ic_state == XLOG_STATE_DIRTY)
3028 goto no_sleep;
3029 else
3030 goto maybe_sleep;
3031 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11003032 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 /* We are the only one with access to this
3034 * iclog. Flush it out now. There should
3035 * be a roundoff of zero to show that someone
3036 * has already taken care of the roundoff from
3037 * the previous sync.
3038 */
David Chinner155cc6b2008-03-06 13:44:14 +11003039 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003040 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003042 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044 if (xlog_state_release_iclog(log, iclog))
3045 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003046
3047 if (log_flushed)
3048 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003049 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003050 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 iclog->ic_state != XLOG_STATE_DIRTY)
3052 goto maybe_sleep;
3053 else
3054 goto no_sleep;
3055 } else {
3056 /* Someone else is writing to this iclog.
3057 * Use its call to flush out the data. However,
3058 * the other thread may not force out this LR,
3059 * so we mark it WANT_SYNC.
3060 */
3061 xlog_state_switch_iclogs(log, iclog, 0);
3062 goto maybe_sleep;
3063 }
3064 }
3065 }
3066
3067 /* By the time we come around again, the iclog could've been filled
3068 * which would give it another lsn. If we have a new lsn, just
3069 * return because the relevant data has been flushed.
3070 */
3071maybe_sleep:
3072 if (flags & XFS_LOG_SYNC) {
3073 /*
3074 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003075 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 * Then we check again after waking up, in case our
3077 * sleep was disturbed by a bad news.
3078 */
3079 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003080 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 return XFS_ERROR(EIO);
3082 }
3083 XFS_STATS_INC(xs_log_force_sleep);
David Chinner12017fa2008-08-13 16:34:31 +10003084 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /*
3086 * No need to grab the log lock here since we're
3087 * only deciding whether or not to return EIO
3088 * and the memory read should be atomic.
3089 */
3090 if (iclog->ic_state & XLOG_STATE_IOERROR)
3091 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003092 if (log_flushed)
3093 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 } else {
3095
3096no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003097 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 }
3099 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003100}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
3102/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003103 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3104 * about errors or whether the log was flushed or not. This is the normal
3105 * interface to use when trying to unpin items or move the log forward.
3106 */
3107void
3108xfs_log_force(
3109 xfs_mount_t *mp,
3110 uint flags)
3111{
3112 int error;
3113
3114 error = _xfs_log_force(mp, flags, NULL);
3115 if (error) {
3116 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3117 "error %d returned.", error);
3118 }
3119}
3120
3121/*
3122 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 *
3124 * Find in-core log with lsn.
3125 * If it is in the DIRTY state, just return.
3126 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3127 * state and go to sleep or return.
3128 * If it is in any other state, go to sleep or return.
3129 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003130 * Synchronous forces are implemented with a signal variable. All callers
3131 * to force a given lsn to disk will wait on a the sv attached to the
3132 * specific in-core log. When given in-core log finally completes its
3133 * write to disk, that thread will wake up all threads waiting on the
3134 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003136int
3137_xfs_log_force_lsn(
3138 struct xfs_mount *mp,
3139 xfs_lsn_t lsn,
3140 uint flags,
3141 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003143 struct log *log = mp->m_log;
3144 struct xlog_in_core *iclog;
3145 int already_slept = 0;
3146
3147 ASSERT(lsn != 0);
3148
3149 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003152 spin_lock(&log->l_icloglock);
3153 iclog = log->l_iclog;
3154 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003155 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003156 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003159 do {
3160 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3161 iclog = iclog->ic_next;
3162 continue;
3163 }
3164
3165 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3166 spin_unlock(&log->l_icloglock);
3167 return 0;
3168 }
3169
3170 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3171 /*
3172 * We sleep here if we haven't already slept (e.g.
3173 * this is the first time we've looked at the correct
3174 * iclog buf) and the buffer before us is going to
3175 * be sync'ed. The reason for this is that if we
3176 * are doing sync transactions here, by waiting for
3177 * the previous I/O to complete, we can allow a few
3178 * more transactions into this iclog before we close
3179 * it down.
3180 *
3181 * Otherwise, we mark the buffer WANT_SYNC, and bump
3182 * up the refcnt so we can release the log (which
3183 * drops the ref count). The state switch keeps new
3184 * transaction commits from using this buffer. When
3185 * the current commits finish writing into the buffer,
3186 * the refcount will drop to zero and the buffer will
3187 * go out then.
3188 */
3189 if (!already_slept &&
3190 (iclog->ic_prev->ic_state &
3191 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3192 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3193
3194 XFS_STATS_INC(xs_log_force_sleep);
3195
3196 sv_wait(&iclog->ic_prev->ic_write_wait,
3197 PSWP, &log->l_icloglock, s);
3198 if (log_flushed)
3199 *log_flushed = 1;
3200 already_slept = 1;
3201 goto try_again;
3202 }
David Chinner155cc6b2008-03-06 13:44:14 +11003203 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003205 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if (xlog_state_release_iclog(log, iclog))
3207 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003208 if (log_flushed)
3209 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003210 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003213 if ((flags & XFS_LOG_SYNC) && /* sleep */
3214 !(iclog->ic_state &
3215 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3216 /*
3217 * Don't wait on completion if we know that we've
3218 * gotten a log write error.
3219 */
3220 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3221 spin_unlock(&log->l_icloglock);
3222 return XFS_ERROR(EIO);
3223 }
3224 XFS_STATS_INC(xs_log_force_sleep);
3225 sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3226 /*
3227 * No need to grab the log lock here since we're
3228 * only deciding whether or not to return EIO
3229 * and the memory read should be atomic.
3230 */
3231 if (iclog->ic_state & XLOG_STATE_IOERROR)
3232 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003234 if (log_flushed)
3235 *log_flushed = 1;
3236 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003237 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003239
3240 return 0;
3241 } while (iclog != log->l_iclog);
3242
3243 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003245}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003247/*
3248 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3249 * about errors or whether the log was flushed or not. This is the normal
3250 * interface to use when trying to unpin items or move the log forward.
3251 */
3252void
3253xfs_log_force_lsn(
3254 xfs_mount_t *mp,
3255 xfs_lsn_t lsn,
3256 uint flags)
3257{
3258 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003260 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3261 if (error) {
3262 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3263 "error %d returned.", error);
3264 }
3265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
3267/*
3268 * Called when we want to mark the current iclog as being ready to sync to
3269 * disk.
3270 */
David Chinnera8272ce2007-11-23 16:28:09 +11003271STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3273{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003274 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
3276 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3277 xlog_state_switch_iclogs(log, iclog, 0);
3278 } else {
3279 ASSERT(iclog->ic_state &
3280 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3281 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003282}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
3284
3285/*****************************************************************************
3286 *
3287 * TICKET functions
3288 *
3289 *****************************************************************************
3290 */
3291
3292/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003293 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003295void
3296xfs_log_ticket_put(
3297 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003299 ASSERT(atomic_read(&ticket->t_ref) > 0);
3300 if (atomic_dec_and_test(&ticket->t_ref)) {
3301 sv_destroy(&ticket->t_wait);
3302 kmem_zone_free(xfs_log_ticket_zone, ticket);
3303 }
3304}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003306xlog_ticket_t *
3307xfs_log_ticket_get(
3308 xlog_ticket_t *ticket)
3309{
3310 ASSERT(atomic_read(&ticket->t_ref) > 0);
3311 atomic_inc(&ticket->t_ref);
3312 return ticket;
3313}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003316 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 */
David Chinnera8272ce2007-11-23 16:28:09 +11003318STATIC xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003319xlog_ticket_alloc(
3320 struct log *log,
3321 int unit_bytes,
3322 int cnt,
3323 char client,
Dave Chinner3383ca52010-05-07 11:04:17 +10003324 uint xflags,
3325 int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003327 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003329 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Dave Chinner3383ca52010-05-07 11:04:17 +10003331 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
David Chinnereb01c9c2008-04-10 12:18:46 +10003332 if (!tic)
3333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 /*
3336 * Permanent reservations have up to 'cnt'-1 active log operations
3337 * in the log. A unit in this case is the amount of space for one
3338 * of these log operations. Normal reservations have a cnt of 1
3339 * and their unit amount is the total amount of space required.
3340 *
3341 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003342 * which occupy space in the on-disk log.
3343 *
3344 * Normal form of a transaction is:
3345 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3346 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3347 *
3348 * We need to account for all the leadup data and trailer data
3349 * around the transaction data.
3350 * And then we need to account for the worst case in terms of using
3351 * more space.
3352 * The worst case will happen if:
3353 * - the placement of the transaction happens to be such that the
3354 * roundoff is at its maximum
3355 * - the transaction data is synced before the commit record is synced
3356 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3357 * Therefore the commit record is in its own Log Record.
3358 * This can happen as the commit record is called with its
3359 * own region to xlog_write().
3360 * This then means that in the worst case, roundoff can happen for
3361 * the commit-rec as well.
3362 * The commit-rec is smaller than padding in this scenario and so it is
3363 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 */
3365
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003366 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003368 unit_bytes += sizeof(xfs_trans_header_t);
3369
3370 /* for start-rec */
3371 unit_bytes += sizeof(xlog_op_header_t);
3372
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003373 /*
3374 * for LR headers - the space for data in an iclog is the size minus
3375 * the space used for the headers. If we use the iclog size, then we
3376 * undercalculate the number of headers required.
3377 *
3378 * Furthermore - the addition of op headers for split-recs might
3379 * increase the space required enough to require more log and op
3380 * headers, so take that into account too.
3381 *
3382 * IMPORTANT: This reservation makes the assumption that if this
3383 * transaction is the first in an iclog and hence has the LR headers
3384 * accounted to it, then the remaining space in the iclog is
3385 * exclusively for this transaction. i.e. if the transaction is larger
3386 * than the iclog, it will be the only thing in that iclog.
3387 * Fundamentally, this means we must pass the entire log vector to
3388 * xlog_write to guarantee this.
3389 */
3390 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3391 num_headers = howmany(unit_bytes, iclog_space);
3392
3393 /* for split-recs - ophdrs added when data split over LRs */
3394 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3395
3396 /* add extra header reservations if we overrun */
3397 while (!num_headers ||
3398 howmany(unit_bytes, iclog_space) > num_headers) {
3399 unit_bytes += sizeof(xlog_op_header_t);
3400 num_headers++;
3401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 unit_bytes += log->l_iclog_hsize * num_headers;
3403
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003404 /* for commit-rec LR header - note: padding will subsume the ophdr */
3405 unit_bytes += log->l_iclog_hsize;
3406
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003407 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003408 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003409 log->l_mp->m_sb.sb_logsunit > 1) {
3410 /* log su roundoff */
3411 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3412 } else {
3413 /* BB roundoff */
3414 unit_bytes += 2*BBSIZE;
3415 }
3416
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003417 atomic_set(&tic->t_ref, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 tic->t_unit_res = unit_bytes;
3419 tic->t_curr_res = unit_bytes;
3420 tic->t_cnt = cnt;
3421 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003422 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 tic->t_clientid = client;
3424 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003425 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 if (xflags & XFS_LOG_PERM_RESERV)
3427 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003428 sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Christoph Hellwig0adba532007-08-30 17:21:46 +10003430 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003433}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435
3436/******************************************************************************
3437 *
3438 * Log debug routines
3439 *
3440 ******************************************************************************
3441 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003442#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443/*
3444 * Make sure that the destination ptr is within the valid data region of
3445 * one of the iclogs. This uses backup pointers stored in a different
3446 * part of the log in case we trash the log structure.
3447 */
3448void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003449xlog_verify_dest_ptr(
3450 struct log *log,
3451 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
3453 int i;
3454 int good_ptr = 0;
3455
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003456 for (i = 0; i < log->l_iclog_bufs; i++) {
3457 if (ptr >= log->l_iclog_bak[i] &&
3458 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 good_ptr++;
3460 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003461
3462 if (!good_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003464}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466STATIC void
3467xlog_verify_grant_head(xlog_t *log, int equals)
3468{
3469 if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3470 if (equals)
3471 ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3472 else
3473 ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3474 } else {
3475 ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3476 ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3477 }
3478} /* xlog_verify_grant_head */
3479
3480/* check if it will fit */
3481STATIC void
3482xlog_verify_tail_lsn(xlog_t *log,
3483 xlog_in_core_t *iclog,
3484 xfs_lsn_t tail_lsn)
3485{
3486 int blocks;
3487
3488 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3489 blocks =
3490 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3491 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3492 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3493 } else {
3494 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3495
3496 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3497 xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3498
3499 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3500 if (blocks < BTOBB(iclog->ic_offset) + 1)
3501 xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3502 }
3503} /* xlog_verify_tail_lsn */
3504
3505/*
3506 * Perform a number of checks on the iclog before writing to disk.
3507 *
3508 * 1. Make sure the iclogs are still circular
3509 * 2. Make sure we have a good magic number
3510 * 3. Make sure we don't have magic numbers in the data
3511 * 4. Check fields of each log operation header for:
3512 * A. Valid client identifier
3513 * B. tid ptr value falls in valid ptr space (user space code)
3514 * C. Length in log record header is correct according to the
3515 * individual operation headers within record.
3516 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3517 * log, check the preceding blocks of the physical log to make sure all
3518 * the cycle numbers agree with the current cycle number.
3519 */
3520STATIC void
3521xlog_verify_iclog(xlog_t *log,
3522 xlog_in_core_t *iclog,
3523 int count,
3524 boolean_t syncing)
3525{
3526 xlog_op_header_t *ophead;
3527 xlog_in_core_t *icptr;
3528 xlog_in_core_2_t *xhdr;
3529 xfs_caddr_t ptr;
3530 xfs_caddr_t base_ptr;
3531 __psint_t field_offset;
3532 __uint8_t clientid;
3533 int len, i, j, k, op_len;
3534 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003537 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 icptr = log->l_iclog;
3539 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003540 if (icptr == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 xlog_panic("xlog_verify_iclog: invalid ptr");
3542 icptr = icptr->ic_next;
3543 }
3544 if (icptr != log->l_iclog)
3545 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003546 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548 /* check log magic numbers */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003549 if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 xlog_panic("xlog_verify_iclog: invalid magic num");
3551
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003552 ptr = (xfs_caddr_t) &iclog->ic_header;
3553 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 ptr += BBSIZE) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003555 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 xlog_panic("xlog_verify_iclog: unexpected magic num");
3557 }
3558
3559 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003560 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 ptr = iclog->ic_datap;
3562 base_ptr = ptr;
3563 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003564 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 for (i = 0; i < len; i++) {
3566 ophead = (xlog_op_header_t *)ptr;
3567
3568 /* clientid is only 1 byte */
3569 field_offset = (__psint_t)
3570 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3571 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3572 clientid = ophead->oh_clientid;
3573 } else {
3574 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3575 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3576 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3577 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003578 clientid = xlog_get_client_id(
3579 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003581 clientid = xlog_get_client_id(
3582 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 }
3584 }
3585 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Christoph Hellwigda1650a2005-11-02 10:21:35 +11003586 cmn_err(CE_WARN, "xlog_verify_iclog: "
3587 "invalid clientid %d op 0x%p offset 0x%lx",
3588 clientid, ophead, (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
3590 /* check length */
3591 field_offset = (__psint_t)
3592 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3593 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003594 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 } else {
3596 idx = BTOBBT((__psint_t)&ophead->oh_len -
3597 (__psint_t)iclog->ic_datap);
3598 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3599 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3600 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003601 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003603 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 }
3605 }
3606 ptr += sizeof(xlog_op_header_t) + op_len;
3607 }
3608} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003609#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003612 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 */
3614STATIC int
3615xlog_state_ioerror(
3616 xlog_t *log)
3617{
3618 xlog_in_core_t *iclog, *ic;
3619
3620 iclog = log->l_iclog;
3621 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3622 /*
3623 * Mark all the incore logs IOERROR.
3624 * From now on, no log flushes will result.
3625 */
3626 ic = iclog;
3627 do {
3628 ic->ic_state = XLOG_STATE_IOERROR;
3629 ic = ic->ic_next;
3630 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 }
3633 /*
3634 * Return non-zero, if state transition has already happened.
3635 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003636 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
3639/*
3640 * This is called from xfs_force_shutdown, when we're forcibly
3641 * shutting down the filesystem, typically because of an IO error.
3642 * Our main objectives here are to make sure that:
3643 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3644 * parties to find out, 'atomically'.
3645 * b. those who're sleeping on log reservations, pinned objects and
3646 * other resources get woken up, and be told the bad news.
3647 * c. nothing new gets queued up after (a) and (b) are done.
3648 * d. if !logerror, flush the iclogs to disk, then seal them off
3649 * for business.
3650 */
3651int
3652xfs_log_force_umount(
3653 struct xfs_mount *mp,
3654 int logerror)
3655{
3656 xlog_ticket_t *tic;
3657 xlog_t *log;
3658 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 log = mp->m_log;
3661
3662 /*
3663 * If this happens during log recovery, don't worry about
3664 * locking; the log isn't open for business yet.
3665 */
3666 if (!log ||
3667 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3668 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003669 if (mp->m_sb_bp)
3670 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 }
3673
3674 /*
3675 * Somebody could've already done the hard work for us.
3676 * No need to get locks for this.
3677 */
3678 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3679 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003680 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 }
3682 retval = 0;
3683 /*
3684 * We must hold both the GRANT lock and the LOG lock,
3685 * before we mark the filesystem SHUTDOWN and wake
3686 * everybody up to tell the bad news.
3687 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003688 spin_lock(&log->l_icloglock);
David Chinner6b1d1a72008-04-10 12:19:02 +10003689 spin_lock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003691 if (mp->m_sb_bp)
3692 XFS_BUF_DONE(mp->m_sb_bp);
3693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 /*
3695 * This flag is sort of redundant because of the mount flag, but
3696 * it's good to maintain the separation between the log and the rest
3697 * of XFS.
3698 */
3699 log->l_flags |= XLOG_IO_ERROR;
3700
3701 /*
3702 * If we hit a log error, we want to mark all the iclogs IOERROR
3703 * while we're still holding the loglock.
3704 */
3705 if (logerror)
3706 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003707 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709 /*
3710 * We don't want anybody waiting for log reservations
3711 * after this. That means we have to wake up everybody
3712 * queued up on reserve_headq as well as write_headq.
3713 * In addition, we make sure in xlog_{re}grant_log_space
3714 * that we don't enqueue anything once the SHUTDOWN flag
3715 * is set, and this action is protected by the GRANTLOCK.
3716 */
3717 if ((tic = log->l_reserve_headq)) {
3718 do {
David Chinner12017fa2008-08-13 16:34:31 +10003719 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 tic = tic->t_next;
3721 } while (tic != log->l_reserve_headq);
3722 }
3723
3724 if ((tic = log->l_write_headq)) {
3725 do {
David Chinner12017fa2008-08-13 16:34:31 +10003726 sv_signal(&tic->t_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 tic = tic->t_next;
3728 } while (tic != log->l_write_headq);
3729 }
Eric Sandeenc8b5ea22007-10-11 17:37:31 +10003730 spin_unlock(&log->l_grant_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003732 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 ASSERT(!logerror);
3734 /*
3735 * Force the incore logs to disk before shutting the
3736 * log down completely.
3737 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003738 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3739
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003740 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003742 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
3744 /*
3745 * Wake up everybody waiting on xfs_log_force.
3746 * Callback all log item committed functions as if the
3747 * log writes were completed.
3748 */
3749 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3750
3751#ifdef XFSERRORDEBUG
3752 {
3753 xlog_in_core_t *iclog;
3754
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003755 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 iclog = log->l_iclog;
3757 do {
3758 ASSERT(iclog->ic_callback == 0);
3759 iclog = iclog->ic_next;
3760 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003761 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 }
3763#endif
3764 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003765 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766}
3767
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003768STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769xlog_iclogs_empty(xlog_t *log)
3770{
3771 xlog_in_core_t *iclog;
3772
3773 iclog = log->l_iclog;
3774 do {
3775 /* endianness does not matter here, zero is zero in
3776 * any language.
3777 */
3778 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 iclog = iclog->ic_next;
3781 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003782 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783}