blob: a0d1376b3d482e1d42b9746ab64e991f6007f4bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
28#include "xfs_error.h"
29#include "xfs_log_priv.h"
30#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_log_recover.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_trans_priv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_rw.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
David Chinnereb01c9c2008-04-10 12:18:46 +100041kmem_zone_t *xfs_log_ticket_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* Local miscellaneous function prototypes */
Dave Chinner55b66332010-03-23 11:43:17 +110044STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 xlog_in_core_t **, xfs_lsn_t *);
46STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp,
47 xfs_buftarg_t *log_target,
48 xfs_daddr_t blk_offset,
49 int num_bblks);
Dave Chinnerc8a09ff2010-12-04 00:02:40 +110050STATIC int xlog_space_left(struct log *log, atomic64_t *head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
Nathan Scottc41564b2006-03-29 08:55:14 +100052STATIC void xlog_dealloc_log(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* local state machine functions */
55STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
56STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
57STATIC int xlog_state_get_iclog_space(xlog_t *log,
58 int len,
59 xlog_in_core_t **iclog,
60 xlog_ticket_t *ticket,
61 int *continued_write,
62 int *logoffsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063STATIC int xlog_state_release_iclog(xlog_t *log,
64 xlog_in_core_t *iclog);
65STATIC void xlog_state_switch_iclogs(xlog_t *log,
66 xlog_in_core_t *iclog,
67 int eventual_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
69
70/* local functions to manipulate grant head */
71STATIC int xlog_grant_log_space(xlog_t *log,
72 xlog_ticket_t *xtic);
Dave Chinner2ced19c2010-12-21 12:09:20 +110073STATIC void xlog_grant_push_ail(struct log *log,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 int need_bytes);
75STATIC void xlog_regrant_reserve_log_space(xlog_t *log,
76 xlog_ticket_t *ticket);
77STATIC int xlog_regrant_write_log_space(xlog_t *log,
78 xlog_ticket_t *ticket);
79STATIC void xlog_ungrant_log_space(xlog_t *log,
80 xlog_ticket_t *ticket);
81
Nathan Scottcfcbbbd2005-11-02 15:12:04 +110082#if defined(DEBUG)
Christoph Hellwige6b1f272010-03-23 11:47:38 +110083STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
Dave Chinner3f336c62010-12-21 12:02:52 +110084STATIC void xlog_verify_grant_tail(struct log *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
86 int count, boolean_t syncing);
87STATIC void xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
88 xfs_lsn_t tail_lsn);
89#else
90#define xlog_verify_dest_ptr(a,b)
Dave Chinner3f336c62010-12-21 12:02:52 +110091#define xlog_verify_grant_tail(a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#define xlog_verify_iclog(a,b,c,d)
93#define xlog_verify_tail_lsn(a,b,c)
94#endif
95
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100096STATIC int xlog_iclogs_empty(xlog_t *log);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Christoph Hellwigdd954c62006-01-11 15:34:50 +110098static void
Dave Chinner663e4962010-12-21 12:06:05 +110099xlog_grant_sub_space(
100 struct log *log,
Dave Chinnerc8a09ff2010-12-04 00:02:40 +1100101 atomic64_t *head,
Dave Chinner663e4962010-12-21 12:06:05 +1100102 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100103{
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100104 int64_t head_val = atomic64_read(head);
105 int64_t new, old;
Dave Chinnera69ed032010-12-21 12:08:20 +1100106
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100107 do {
108 int cycle, space;
Dave Chinnera69ed032010-12-21 12:08:20 +1100109
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100110 xlog_crack_grant_head_val(head_val, &cycle, &space);
Dave Chinnera69ed032010-12-21 12:08:20 +1100111
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100112 space -= bytes;
113 if (space < 0) {
114 space += log->l_logsize;
115 cycle--;
116 }
117
118 old = head_val;
119 new = xlog_assign_grant_head_val(cycle, space);
120 head_val = atomic64_cmpxchg(head, old, new);
121 } while (head_val != old);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100122}
123
124static void
Dave Chinner663e4962010-12-21 12:06:05 +1100125xlog_grant_add_space(
126 struct log *log,
Dave Chinnerc8a09ff2010-12-04 00:02:40 +1100127 atomic64_t *head,
Dave Chinner663e4962010-12-21 12:06:05 +1100128 int bytes)
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100129{
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100130 int64_t head_val = atomic64_read(head);
131 int64_t new, old;
Dave Chinnera69ed032010-12-21 12:08:20 +1100132
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100133 do {
134 int tmp;
135 int cycle, space;
Dave Chinnera69ed032010-12-21 12:08:20 +1100136
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100137 xlog_crack_grant_head_val(head_val, &cycle, &space);
Dave Chinnera69ed032010-12-21 12:08:20 +1100138
Dave Chinnerd0eb2f32010-12-21 12:29:14 +1100139 tmp = log->l_logsize - space;
140 if (tmp > bytes)
141 space += bytes;
142 else {
143 space = bytes - tmp;
144 cycle++;
145 }
146
147 old = head_val;
148 new = xlog_assign_grant_head_val(cycle, space);
149 head_val = atomic64_cmpxchg(head, old, new);
150 } while (head_val != old);
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100151}
Dave Chinnera69ed032010-12-21 12:08:20 +1100152
Christoph Hellwigc303c5b2012-02-20 02:31:26 +0000153STATIC void
154xlog_grant_head_init(
155 struct xlog_grant_head *head)
156{
157 xlog_assign_grant_head(&head->grant, 1, 0);
158 INIT_LIST_HEAD(&head->waiters);
159 spin_lock_init(&head->lock);
160}
161
Christoph Hellwiga79bf2d2012-02-20 02:31:27 +0000162STATIC void
163xlog_grant_head_wake_all(
164 struct xlog_grant_head *head)
165{
166 struct xlog_ticket *tic;
167
168 spin_lock(&head->lock);
169 list_for_each_entry(tic, &head->waiters, t_queue)
170 wake_up_process(tic->t_task);
171 spin_unlock(&head->lock);
172}
173
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000174STATIC bool
175xlog_reserveq_wake(
176 struct log *log,
177 int *free_bytes)
178{
179 struct xlog_ticket *tic;
180 int need_bytes;
181
Christoph Hellwig28496962012-02-20 02:31:25 +0000182 list_for_each_entry(tic, &log->l_reserve_head.waiters, t_queue) {
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000183 if (tic->t_flags & XLOG_TIC_PERM_RESERV)
184 need_bytes = tic->t_unit_res * tic->t_cnt;
185 else
186 need_bytes = tic->t_unit_res;
187
188 if (*free_bytes < need_bytes)
189 return false;
190 *free_bytes -= need_bytes;
191
192 trace_xfs_log_grant_wake_up(log, tic);
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000193 wake_up_process(tic->t_task);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000194 }
195
196 return true;
197}
198
199STATIC bool
200xlog_writeq_wake(
201 struct log *log,
202 int *free_bytes)
203{
204 struct xlog_ticket *tic;
205 int need_bytes;
206
Christoph Hellwig28496962012-02-20 02:31:25 +0000207 list_for_each_entry(tic, &log->l_write_head.waiters, t_queue) {
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000208 ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
209
210 need_bytes = tic->t_unit_res;
211
212 if (*free_bytes < need_bytes)
213 return false;
214 *free_bytes -= need_bytes;
215
216 trace_xfs_log_regrant_write_wake_up(log, tic);
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000217 wake_up_process(tic->t_task);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000218 }
219
220 return true;
221}
222
223STATIC int
224xlog_reserveq_wait(
225 struct log *log,
226 struct xlog_ticket *tic,
227 int need_bytes)
228{
Christoph Hellwig28496962012-02-20 02:31:25 +0000229 list_add_tail(&tic->t_queue, &log->l_reserve_head.waiters);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000230
231 do {
232 if (XLOG_FORCED_SHUTDOWN(log))
233 goto shutdown;
234 xlog_grant_push_ail(log, need_bytes);
235
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000236 __set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig28496962012-02-20 02:31:25 +0000237 spin_unlock(&log->l_reserve_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000238
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000239 XFS_STATS_INC(xs_sleep_logspace);
240
241 trace_xfs_log_grant_sleep(log, tic);
242 schedule();
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000243 trace_xfs_log_grant_wake(log, tic);
244
Christoph Hellwig28496962012-02-20 02:31:25 +0000245 spin_lock(&log->l_reserve_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000246 if (XLOG_FORCED_SHUTDOWN(log))
247 goto shutdown;
Christoph Hellwig28496962012-02-20 02:31:25 +0000248 } while (xlog_space_left(log, &log->l_reserve_head.grant) < need_bytes);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000249
250 list_del_init(&tic->t_queue);
251 return 0;
252shutdown:
253 list_del_init(&tic->t_queue);
254 return XFS_ERROR(EIO);
255}
256
257STATIC int
258xlog_writeq_wait(
259 struct log *log,
260 struct xlog_ticket *tic,
261 int need_bytes)
262{
Christoph Hellwig28496962012-02-20 02:31:25 +0000263 list_add_tail(&tic->t_queue, &log->l_write_head.waiters);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000264
265 do {
266 if (XLOG_FORCED_SHUTDOWN(log))
267 goto shutdown;
268 xlog_grant_push_ail(log, need_bytes);
269
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000270 __set_current_state(TASK_UNINTERRUPTIBLE);
Christoph Hellwig28496962012-02-20 02:31:25 +0000271 spin_unlock(&log->l_write_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000272
Christoph Hellwig14a7235f2012-02-20 02:31:24 +0000273 XFS_STATS_INC(xs_sleep_logspace);
274
275 trace_xfs_log_regrant_write_sleep(log, tic);
276 schedule();
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000277 trace_xfs_log_regrant_write_wake(log, tic);
278
Christoph Hellwig28496962012-02-20 02:31:25 +0000279 spin_lock(&log->l_write_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000280 if (XLOG_FORCED_SHUTDOWN(log))
281 goto shutdown;
Christoph Hellwig28496962012-02-20 02:31:25 +0000282 } while (xlog_space_left(log, &log->l_write_head.grant) < need_bytes);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000283
284 list_del_init(&tic->t_queue);
285 return 0;
286shutdown:
287 list_del_init(&tic->t_queue);
288 return XFS_ERROR(EIO);
289}
290
Christoph Hellwig0adba532007-08-30 17:21:46 +1000291static void
292xlog_tic_reset_res(xlog_ticket_t *tic)
293{
294 tic->t_res_num = 0;
295 tic->t_res_arr_sum = 0;
296 tic->t_res_num_ophdrs = 0;
297}
298
299static void
300xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
301{
302 if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
303 /* add to overflow and start again */
304 tic->t_res_o_flow += tic->t_res_arr_sum;
305 tic->t_res_num = 0;
306 tic->t_res_arr_sum = 0;
307 }
308
309 tic->t_res_arr[tic->t_res_num].r_len = len;
310 tic->t_res_arr[tic->t_res_num].r_type = type;
311 tic->t_res_arr_sum += len;
312 tic->t_res_num++;
313}
Christoph Hellwigdd954c62006-01-11 15:34:50 +1100314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
316 * NOTES:
317 *
318 * 1. currblock field gets updated at startup and after in-core logs
319 * marked as with WANT_SYNC.
320 */
321
322/*
323 * This routine is called when a user of a log manager ticket is done with
324 * the reservation. If the ticket was ever used, then a commit record for
325 * the associated transaction is written out as a log operation header with
326 * no data. The flag XLOG_TIC_INITED is set when the first write occurs with
327 * a given ticket. If the ticket was one with a permanent reservation, then
328 * a few operations are done differently. Permanent reservation tickets by
329 * default don't release the reservation. They just commit the current
330 * transaction with the belief that the reservation is still needed. A flag
331 * must be passed in before permanent reservations are actually released.
332 * When these type of tickets are not released, they need to be set into
333 * the inited state again. By doing this, a start record will be written
334 * out when the next write occurs.
335 */
336xfs_lsn_t
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000337xfs_log_done(
338 struct xfs_mount *mp,
339 struct xlog_ticket *ticket,
340 struct xlog_in_core **iclog,
341 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000343 struct log *log = mp->m_log;
344 xfs_lsn_t lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (XLOG_FORCED_SHUTDOWN(log) ||
347 /*
348 * If nothing was ever written, don't write out commit record.
349 * If we get an error, just continue and give back the log ticket.
350 */
351 (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
Dave Chinner55b66332010-03-23 11:43:17 +1100352 (xlog_commit_record(log, ticket, iclog, &lsn)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 lsn = (xfs_lsn_t) -1;
354 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
355 flags |= XFS_LOG_REL_PERM_RESERV;
356 }
357 }
358
359
360 if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
361 (flags & XFS_LOG_REL_PERM_RESERV)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000362 trace_xfs_log_done_nonperm(log, ticket);
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000365 * Release ticket if not permanent reservation or a specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * request has been made to release a permanent reservation.
367 */
368 xlog_ungrant_log_space(log, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100369 xfs_log_ticket_put(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000371 trace_xfs_log_done_perm(log, ticket);
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 xlog_regrant_reserve_log_space(log, ticket);
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000374 /* If this ticket was a permanent reservation and we aren't
375 * trying to release it, reset the inited flags; so next time
376 * we write, a start record will be written out.
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 ticket->t_flags |= XLOG_TIC_INITED;
Lachlan McIlroyc6a7b0f2008-08-13 16:52:50 +1000379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 return lsn;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
385 * Attaches a new iclog I/O completion callback routine during
386 * transaction commit. If the log is in error state, a non-zero
387 * return code is handed back and the caller is responsible for
388 * executing the callback at an appropriate time.
389 */
390int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000391xfs_log_notify(
392 struct xfs_mount *mp,
393 struct xlog_in_core *iclog,
394 xfs_log_callback_t *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000396 int abortflg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
David Chinner114d23a2008-04-10 12:18:39 +1000398 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
400 if (!abortflg) {
401 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
402 (iclog->ic_state == XLOG_STATE_WANT_SYNC));
403 cb->cb_next = NULL;
404 *(iclog->ic_callback_tail) = cb;
405 iclog->ic_callback_tail = &(cb->cb_next);
406 }
David Chinner114d23a2008-04-10 12:18:39 +1000407 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return abortflg;
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000409}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000412xfs_log_release_iclog(
413 struct xfs_mount *mp,
414 struct xlog_in_core *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000416 if (xlog_state_release_iclog(mp->m_log, iclog)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000417 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +0100418 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 return 0;
422}
423
424/*
425 * 1. Reserve an amount of on-disk log space and return a ticket corresponding
426 * to the reservation.
427 * 2. Potentially, push buffers at tail of log to disk.
428 *
429 * Each reservation is going to reserve extra space for a log record header.
430 * When writes happen to the on-disk log, we don't subtract the length of the
431 * log record header from any reservation. By wasting space in each
432 * reservation, we prevent over allocation problems.
433 */
434int
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000435xfs_log_reserve(
436 struct xfs_mount *mp,
437 int unit_bytes,
438 int cnt,
439 struct xlog_ticket **ticket,
440 __uint8_t client,
441 uint flags,
442 uint t_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000444 struct log *log = mp->m_log;
445 struct xlog_ticket *internal_ticket;
446 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (XLOG_FORCED_SHUTDOWN(log))
451 return XFS_ERROR(EIO);
452
453 XFS_STATS_INC(xs_try_logspace);
454
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (*ticket != NULL) {
457 ASSERT(flags & XFS_LOG_PERM_RESERV);
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000458 internal_ticket = *ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000459
Dave Chinner524ee362010-05-07 11:05:05 +1000460 /*
461 * this is a new transaction on the ticket, so we need to
462 * change the transaction ID so that the next transaction has a
463 * different TID in the log. Just add one to the existing tid
464 * so that we can see chains of rolling transactions in the log
465 * easily.
466 */
467 internal_ticket->t_tid++;
468
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000469 trace_xfs_log_reserve(log, internal_ticket);
470
Dave Chinner2ced19c2010-12-21 12:09:20 +1100471 xlog_grant_push_ail(log, internal_ticket->t_unit_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 retval = xlog_regrant_write_log_space(log, internal_ticket);
473 } else {
474 /* may sleep if need to allocate more tickets */
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100475 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
Dave Chinner3383ca52010-05-07 11:04:17 +1000476 client, flags,
477 KM_SLEEP|KM_MAYFAIL);
David Chinnereb01c9c2008-04-10 12:18:46 +1000478 if (!internal_ticket)
479 return XFS_ERROR(ENOMEM);
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000480 internal_ticket->t_trans_type = t_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 *ticket = internal_ticket;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000482
483 trace_xfs_log_reserve(log, internal_ticket);
484
Dave Chinner2ced19c2010-12-21 12:09:20 +1100485 xlog_grant_push_ail(log,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 (internal_ticket->t_unit_res *
487 internal_ticket->t_cnt));
488 retval = xlog_grant_log_space(log, internal_ticket);
489 }
490
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000491 if (unlikely(retval)) {
492 /*
493 * If we are failing, make sure the ticket doesn't have any
494 * current reservations. We don't want to add this back
495 * when the ticket/ transaction gets cancelled.
496 */
497 internal_ticket->t_curr_res = 0;
498 /* ungrant will give back unit_res * t_cnt. */
499 internal_ticket->t_cnt = 0;
500 }
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return retval;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +0000503}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505
506/*
507 * Mount a log filesystem
508 *
509 * mp - ubiquitous xfs mount point structure
510 * log_target - buftarg of on-disk log device
511 * blk_offset - Start block # where block size is 512 bytes (BBSIZE)
512 * num_bblocks - Number of BBSIZE blocks in on-disk log
513 *
514 * Return error or zero.
515 */
516int
David Chinner249a8c12008-02-05 12:13:32 +1100517xfs_log_mount(
518 xfs_mount_t *mp,
519 xfs_buftarg_t *log_target,
520 xfs_daddr_t blk_offset,
521 int num_bblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
David Chinner249a8c12008-02-05 12:13:32 +1100523 int error;
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100526 xfs_notice(mp, "Mounting Filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 else {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100528 xfs_notice(mp,
529"Mounting filesystem in no-recovery mode. Filesystem will be inconsistent.");
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000530 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
533 mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
Dave Chinnera6cb7672009-04-06 18:39:27 +0200534 if (IS_ERR(mp->m_log)) {
535 error = -PTR_ERR(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100536 goto out;
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /*
David Chinner249a8c12008-02-05 12:13:32 +1100540 * Initialize the AIL now we have a log.
541 */
David Chinner249a8c12008-02-05 12:13:32 +1100542 error = xfs_trans_ail_init(mp);
543 if (error) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100544 xfs_warn(mp, "AIL initialisation failed: error %d", error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100545 goto out_free_log;
David Chinner249a8c12008-02-05 12:13:32 +1100546 }
David Chinnera9c21c12008-10-30 17:39:35 +1100547 mp->m_log->l_ailp = mp->m_ail;
David Chinner249a8c12008-02-05 12:13:32 +1100548
549 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * skip log recovery on a norecovery mount. pretend it all
551 * just worked.
552 */
553 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
David Chinner249a8c12008-02-05 12:13:32 +1100554 int readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000557 mp->m_flags &= ~XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Eric Sandeen65be6052006-01-11 15:34:19 +1100559 error = xlog_recover(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 if (readonly)
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000562 mp->m_flags |= XFS_MOUNT_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (error) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100564 xfs_warn(mp, "log mount/recovery failed: error %d",
565 error);
Christoph Hellwig26430752009-02-12 19:55:48 +0100566 goto out_destroy_ail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568 }
569
570 /* Normal transactions can now occur */
571 mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
572
Dave Chinner71e330b2010-05-21 14:37:18 +1000573 /*
574 * Now the log has been fully initialised and we know were our
575 * space grant counters are, we can initialise the permanent ticket
576 * needed for delayed logging to work.
577 */
578 xlog_cil_init_post_recovery(mp->m_log);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 0;
Christoph Hellwig26430752009-02-12 19:55:48 +0100581
582out_destroy_ail:
583 xfs_trans_ail_destroy(mp);
584out_free_log:
585 xlog_dealloc_log(mp->m_log);
Dave Chinner644c3562008-11-10 16:50:24 +1100586out:
David Chinner249a8c12008-02-05 12:13:32 +1100587 return error;
Christoph Hellwig26430752009-02-12 19:55:48 +0100588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590/*
591 * Finish the recovery of the file system. This is separate from
592 * the xfs_log_mount() call, because it depends on the code in
593 * xfs_mountfs() to read in the root and real-time bitmap inodes
594 * between calling xfs_log_mount() and here.
595 *
596 * mp - ubiquitous xfs mount point structure
597 */
598int
Christoph Hellwig42490232008-08-13 16:49:32 +1000599xfs_log_mount_finish(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 int error;
602
603 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
Christoph Hellwig42490232008-08-13 16:49:32 +1000604 error = xlog_recover_finish(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 else {
606 error = 0;
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000607 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 return error;
611}
612
613/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * Final log writes as part of unmount.
615 *
616 * Mark the filesystem clean as unmount happens. Note that during relocation
617 * this routine needs to be executed as part of source-bag while the
618 * deallocation must not be done until source-end.
619 */
620
621/*
622 * Unmount record used to have a string "Unmount filesystem--" in the
623 * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
624 * We just write the magic number now since that particular field isn't
625 * currently architecture converted and "nUmount" is a bit foo.
626 * As far as I know, there weren't any dependencies on the old behaviour.
627 */
628
629int
630xfs_log_unmount_write(xfs_mount_t *mp)
631{
632 xlog_t *log = mp->m_log;
633 xlog_in_core_t *iclog;
634#ifdef DEBUG
635 xlog_in_core_t *first_iclog;
636#endif
Christoph Hellwig35a8a722010-02-15 23:34:54 +0000637 xlog_ticket_t *tic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 xfs_lsn_t lsn;
639 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * Don't write out unmount record on read-only mounts.
643 * Or, if we are doing a forced umount (typically because of IO errors).
644 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000645 if (mp->m_flags & XFS_MOUNT_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return 0;
647
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000648 error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
David Chinnerb911ca02008-04-10 12:24:30 +1000649 ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#ifdef DEBUG
652 first_iclog = iclog = log->l_iclog;
653 do {
654 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
655 ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
656 ASSERT(iclog->ic_offset == 0);
657 }
658 iclog = iclog->ic_next;
659 } while (iclog != first_iclog);
660#endif
661 if (! (XLOG_FORCED_SHUTDOWN(log))) {
Tim Shimmin955e47a2006-09-28 11:04:16 +1000662 error = xfs_log_reserve(mp, 600, 1, &tic,
663 XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (!error) {
Dave Chinner55b66332010-03-23 11:43:17 +1100665 /* the data section must be 32 bit size aligned */
666 struct {
667 __uint16_t magic;
668 __uint16_t pad1;
669 __uint32_t pad2; /* may as well make it 64 bits */
670 } magic = {
671 .magic = XLOG_UNMOUNT_TYPE,
672 };
673 struct xfs_log_iovec reg = {
Christoph Hellwig4e0d5f92010-06-23 18:11:15 +1000674 .i_addr = &magic,
Dave Chinner55b66332010-03-23 11:43:17 +1100675 .i_len = sizeof(magic),
676 .i_type = XLOG_REG_TYPE_UNMOUNT,
677 };
678 struct xfs_log_vec vec = {
679 .lv_niovecs = 1,
680 .lv_iovecp = &reg,
681 };
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* remove inited flag */
Dave Chinner55b66332010-03-23 11:43:17 +1100684 tic->t_flags = 0;
685 error = xlog_write(log, &vec, tic, &lsn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 NULL, XLOG_UNMOUNT_TRANS);
687 /*
688 * At this point, we're umounting anyway,
689 * so there's no point in transitioning log state
690 * to IOERROR. Just continue...
691 */
692 }
693
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100694 if (error)
695 xfs_alert(mp, "%s: unmount record failed", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000698 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100700 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100702 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000703 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000705 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
707 iclog->ic_state == XLOG_STATE_DIRTY)) {
708 if (!XLOG_FORCED_SHUTDOWN(log)) {
Dave Chinnereb40a872010-12-21 12:09:01 +1100709 xlog_wait(&iclog->ic_force_wait,
710 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000712 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000715 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Tim Shimmin955e47a2006-09-28 11:04:16 +1000717 if (tic) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000718 trace_xfs_log_umount_write(log, tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000719 xlog_ungrant_log_space(log, tic);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100720 xfs_log_ticket_put(tic);
Tim Shimmin955e47a2006-09-28 11:04:16 +1000721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 } else {
723 /*
724 * We're already in forced_shutdown mode, couldn't
725 * even attempt to write out the unmount transaction.
726 *
727 * Go through the motions of sync'ing and releasing
728 * the iclog, even though no I/O will actually happen,
Nathan Scottc41564b2006-03-29 08:55:14 +1000729 * we need to wait for other log I/Os that may already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * be in progress. Do this as a separate section of
731 * code so we'll know if we ever get stuck here that
732 * we're in this odd situation of trying to unmount
733 * a file system that went into forced_shutdown as
734 * the result of an unmount..
735 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000736 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 iclog = log->l_iclog;
David Chinner155cc6b2008-03-06 13:44:14 +1100738 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 xlog_state_want_sync(log, iclog);
Christoph Hellwig39e2def2008-12-03 12:20:28 +0100741 spin_unlock(&log->l_icloglock);
David Chinner1bb7d6b2008-04-10 12:24:38 +1000742 error = xlog_state_release_iclog(log, iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000744 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if ( ! ( iclog->ic_state == XLOG_STATE_ACTIVE
747 || iclog->ic_state == XLOG_STATE_DIRTY
748 || iclog->ic_state == XLOG_STATE_IOERROR) ) {
749
Dave Chinnereb40a872010-12-21 12:09:01 +1100750 xlog_wait(&iclog->ic_force_wait,
751 &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000753 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 }
756
David Chinner1bb7d6b2008-04-10 12:24:38 +1000757 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758} /* xfs_log_unmount_write */
759
760/*
761 * Deallocate log structures for unmount/relocation.
David Chinner249a8c12008-02-05 12:13:32 +1100762 *
763 * We need to stop the aild from running before we destroy
764 * and deallocate the log as the aild references the log.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
766void
Christoph Hellwig21b699c2009-03-16 08:19:29 +0100767xfs_log_unmount(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
David Chinner249a8c12008-02-05 12:13:32 +1100769 xfs_trans_ail_destroy(mp);
Nathan Scottc41564b2006-03-29 08:55:14 +1000770 xlog_dealloc_log(mp->m_log);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Dave Chinner43f5efc2010-03-23 10:10:00 +1100773void
774xfs_log_item_init(
775 struct xfs_mount *mp,
776 struct xfs_log_item *item,
777 int type,
Christoph Hellwig272e42b2011-10-28 09:54:24 +0000778 const struct xfs_item_ops *ops)
Dave Chinner43f5efc2010-03-23 10:10:00 +1100779{
780 item->li_mountp = mp;
781 item->li_ailp = mp->m_ail;
782 item->li_type = type;
783 item->li_ops = ops;
Dave Chinner71e330b2010-05-21 14:37:18 +1000784 item->li_lv = NULL;
785
786 INIT_LIST_HEAD(&item->li_ail);
787 INIT_LIST_HEAD(&item->li_cil);
Dave Chinner43f5efc2010-03-23 10:10:00 +1100788}
789
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000790/*
791 * Wake up processes waiting for log space after we have moved the log tail.
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793void
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000794xfs_log_space_wake(
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000795 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000797 struct log *log = mp->m_log;
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000798 int free_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (XLOG_FORCED_SHUTDOWN(log))
801 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Christoph Hellwig28496962012-02-20 02:31:25 +0000803 if (!list_empty_careful(&log->l_write_head.waiters)) {
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000804 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
805
Christoph Hellwig28496962012-02-20 02:31:25 +0000806 spin_lock(&log->l_write_head.lock);
807 free_bytes = xlog_space_left(log, &log->l_write_head.grant);
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000808 xlog_writeq_wake(log, &free_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +0000809 spin_unlock(&log->l_write_head.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Dave Chinner10547942010-12-21 12:02:25 +1100811
Christoph Hellwig28496962012-02-20 02:31:25 +0000812 if (!list_empty_careful(&log->l_reserve_head.waiters)) {
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000813 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
814
Christoph Hellwig28496962012-02-20 02:31:25 +0000815 spin_lock(&log->l_reserve_head.lock);
816 free_bytes = xlog_space_left(log, &log->l_reserve_head.grant);
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +0000817 xlog_reserveq_wake(log, &free_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +0000818 spin_unlock(&log->l_reserve_head.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Dave Chinner3f16b982010-12-21 12:29:01 +1100820}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822/*
823 * Determine if we have a transaction that has gone to disk
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000824 * that needs to be covered. To begin the transition to the idle state
825 * firstly the log needs to be idle (no AIL and nothing in the iclogs).
826 * If we are then in a state where covering is needed, the caller is informed
827 * that dummy transactions are required to move the log into the idle state.
828 *
829 * Because this is called as part of the sync process, we should also indicate
830 * that dummy transactions should be issued in anything but the covered or
831 * idle states. This ensures that the log tail is accurately reflected in
832 * the log at the end of the sync, hence if a crash occurrs avoids replay
833 * of transactions where the metadata is already on disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
835int
836xfs_log_need_covered(xfs_mount_t *mp)
837{
David Chinner27d8d5f2008-10-30 17:38:39 +1100838 int needed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 xlog_t *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
David Chinner92821e22007-05-24 15:26:31 +1000841 if (!xfs_fs_writable(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 0;
843
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000844 spin_lock(&log->l_icloglock);
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000845 switch (log->l_covered_state) {
846 case XLOG_STATE_COVER_DONE:
847 case XLOG_STATE_COVER_DONE2:
848 case XLOG_STATE_COVER_IDLE:
849 break;
850 case XLOG_STATE_COVER_NEED:
851 case XLOG_STATE_COVER_NEED2:
Dave Chinnerfd074842011-04-08 12:45:07 +1000852 if (!xfs_ail_min_lsn(log->l_ailp) &&
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000853 xlog_iclogs_empty(log)) {
854 if (log->l_covered_state == XLOG_STATE_COVER_NEED)
855 log->l_covered_state = XLOG_STATE_COVER_DONE;
856 else
857 log->l_covered_state = XLOG_STATE_COVER_DONE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000859 /* FALLTHRU */
860 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 needed = 1;
Dave Chinnerb6f8dd42010-04-13 15:06:44 +1000862 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +1000864 spin_unlock(&log->l_icloglock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100865 return needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000868/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 * We may be holding the log iclog lock upon entering this routine.
870 */
871xfs_lsn_t
Dave Chinner1c3cb9e2010-12-21 12:28:39 +1100872xlog_assign_tail_lsn(
873 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Dave Chinner1c3cb9e2010-12-21 12:28:39 +1100875 xfs_lsn_t tail_lsn;
876 struct log *log = mp->m_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Christoph Hellwig09a423a2012-02-20 02:31:20 +0000878 /*
879 * To make sure we always have a valid LSN for the log tail we keep
880 * track of the last LSN which was committed in log->l_last_sync_lsn,
881 * and use that when the AIL was empty and xfs_ail_min_lsn returns 0.
882 *
883 * If the AIL has been emptied we also need to wake any process
884 * waiting for this condition.
885 */
Dave Chinnerfd074842011-04-08 12:45:07 +1000886 tail_lsn = xfs_ail_min_lsn(mp->m_ail);
Dave Chinner84f3c682010-12-03 22:11:29 +1100887 if (!tail_lsn)
888 tail_lsn = atomic64_read(&log->l_last_sync_lsn);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +1100889 atomic64_set(&log->l_tail_lsn, tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return tail_lsn;
Dave Chinner1c3cb9e2010-12-21 12:28:39 +1100891}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893/*
894 * Return the space in the log between the tail and the head. The head
895 * is passed in the cycle/bytes formal parms. In the special case where
896 * the reserve head has wrapped passed the tail, this calculation is no
897 * longer valid. In this case, just return 0 which means there is no space
898 * in the log. This works for all places where this function is called
899 * with the reserve head. Of course, if the write head were to ever
900 * wrap the tail, we should blow up. Rather than catch this case here,
901 * we depend on other ASSERTions in other parts of the code. XXXmiken
902 *
903 * This code also handles the case where the reservation head is behind
904 * the tail. The details of this case are described below, but the end
905 * result is that we return the size of the log as the amount of space left.
906 */
David Chinnera8272ce2007-11-23 16:28:09 +1100907STATIC int
Dave Chinnera69ed032010-12-21 12:08:20 +1100908xlog_space_left(
909 struct log *log,
Dave Chinnerc8a09ff2010-12-04 00:02:40 +1100910 atomic64_t *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Dave Chinnera69ed032010-12-21 12:08:20 +1100912 int free_bytes;
913 int tail_bytes;
914 int tail_cycle;
915 int head_cycle;
916 int head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Dave Chinnera69ed032010-12-21 12:08:20 +1100918 xlog_crack_grant_head(head, &head_cycle, &head_bytes);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +1100919 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_bytes);
920 tail_bytes = BBTOB(tail_bytes);
Dave Chinnera69ed032010-12-21 12:08:20 +1100921 if (tail_cycle == head_cycle && head_bytes >= tail_bytes)
922 free_bytes = log->l_logsize - (head_bytes - tail_bytes);
923 else if (tail_cycle + 1 < head_cycle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return 0;
Dave Chinnera69ed032010-12-21 12:08:20 +1100925 else if (tail_cycle < head_cycle) {
926 ASSERT(tail_cycle == (head_cycle - 1));
927 free_bytes = tail_bytes - head_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 } else {
929 /*
930 * The reservation head is behind the tail.
931 * In this case we just want to return the size of the
932 * log as the amount of space left.
933 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100934 xfs_alert(log->l_mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 "xlog_space_left: head behind tail\n"
936 " tail_cycle = %d, tail_bytes = %d\n"
937 " GH cycle = %d, GH bytes = %d",
Dave Chinnera69ed032010-12-21 12:08:20 +1100938 tail_cycle, tail_bytes, head_cycle, head_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 ASSERT(0);
940 free_bytes = log->l_logsize;
941 }
942 return free_bytes;
Dave Chinnera69ed032010-12-21 12:08:20 +1100943}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945
946/*
947 * Log function which is called when an io completes.
948 *
949 * The log manager needs its own routine, in order to control what
950 * happens with the buffer after the write completes.
951 */
952void
953xlog_iodone(xfs_buf_t *bp)
954{
Christoph Hellwigadadbee2011-07-13 13:43:49 +0200955 xlog_in_core_t *iclog = bp->b_fspriv;
956 xlog_t *l = iclog->ic_log;
957 int aborted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 /*
960 * Race to shutdown the filesystem if we see an error.
961 */
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +0000962 if (XFS_TEST_ERROR((xfs_buf_geterror(bp)), l->l_mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
Christoph Hellwig901796a2011-10-10 16:52:49 +0000964 xfs_buf_ioerror_alert(bp, __func__);
Christoph Hellwigc867cb62011-10-10 16:52:46 +0000965 xfs_buf_stale(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000966 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 /*
968 * This flag will be propagated to the trans-committed
969 * callback routines to let them know that the log-commit
970 * didn't succeed.
971 */
972 aborted = XFS_LI_ABORTED;
973 } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
974 aborted = XFS_LI_ABORTED;
975 }
David Chinner3db296f2007-05-14 18:24:16 +1000976
977 /* log I/O is always issued ASYNC */
978 ASSERT(XFS_BUF_ISASYNC(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 xlog_state_done_syncing(iclog, aborted);
David Chinner3db296f2007-05-14 18:24:16 +1000980 /*
981 * do not reference the buffer (bp) here as we could race
982 * with it being freed after writing the unmount record to the
983 * log.
984 */
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986} /* xlog_iodone */
987
988/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * Return size of each in-core log record buffer.
990 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200991 * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 *
993 * If the filesystem blocksize is too large, we may need to choose a
994 * larger size since the directory code currently logs entire blocks.
995 */
996
997STATIC void
998xlog_get_iclog_buffer_size(xfs_mount_t *mp,
999 xlog_t *log)
1000{
1001 int size;
1002 int xhdrs;
1003
Eric Sandeen1cb51252007-08-16 16:24:43 +10001004 if (mp->m_logbufs <= 0)
1005 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
1006 else
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001007 log->l_iclog_bufs = mp->m_logbufs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 /*
1010 * Buffer size passed in from mount system call.
1011 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001012 if (mp->m_logbsize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 size = log->l_iclog_size = mp->m_logbsize;
1014 log->l_iclog_size_log = 0;
1015 while (size != 1) {
1016 log->l_iclog_size_log++;
1017 size >>= 1;
1018 }
1019
Eric Sandeen62118702008-03-06 13:44:28 +11001020 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001021 /* # headers = size / 32k
1022 * one header holds cycles from 32k of data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
1024
1025 xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1026 if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1027 xhdrs++;
1028 log->l_iclog_hsize = xhdrs << BBSHIFT;
1029 log->l_iclog_heads = xhdrs;
1030 } else {
1031 ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1032 log->l_iclog_hsize = BBSIZE;
1033 log->l_iclog_heads = 1;
1034 }
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001035 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001038 /* All machines use 32kB buffers by default. */
Eric Sandeen1cb51252007-08-16 16:24:43 +10001039 log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1040 log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /* the default log size is 16k or 32k which is one header sector */
1043 log->l_iclog_hsize = BBSIZE;
1044 log->l_iclog_heads = 1;
1045
Christoph Hellwig7153f8b2009-02-09 08:36:46 +01001046done:
1047 /* are we being asked to make the sizes selected above visible? */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001048 if (mp->m_logbufs == 0)
1049 mp->m_logbufs = log->l_iclog_bufs;
1050 if (mp->m_logbsize == 0)
1051 mp->m_logbsize = log->l_iclog_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052} /* xlog_get_iclog_buffer_size */
1053
1054
1055/*
1056 * This routine initializes some of the log structure for a given mount point.
1057 * Its primary purpose is to fill in enough, so recovery can occur. However,
1058 * some other stuff may be filled in too.
1059 */
1060STATIC xlog_t *
1061xlog_alloc_log(xfs_mount_t *mp,
1062 xfs_buftarg_t *log_target,
1063 xfs_daddr_t blk_offset,
1064 int num_bblks)
1065{
1066 xlog_t *log;
1067 xlog_rec_header_t *head;
1068 xlog_in_core_t **iclogp;
1069 xlog_in_core_t *iclog, *prev_iclog=NULL;
1070 xfs_buf_t *bp;
1071 int i;
Dave Chinnera6cb7672009-04-06 18:39:27 +02001072 int error = ENOMEM;
Alex Elder69ce58f2010-04-20 17:09:59 +10001073 uint log2_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Dave Chinner644c3562008-11-10 16:50:24 +11001075 log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001076 if (!log) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001077 xfs_warn(mp, "Log allocation failed: No memory!");
Dave Chinnera6cb7672009-04-06 18:39:27 +02001078 goto out;
1079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 log->l_mp = mp;
1082 log->l_targ = log_target;
1083 log->l_logsize = BBTOB(num_bblks);
1084 log->l_logBBstart = blk_offset;
1085 log->l_logBBsize = num_bblks;
1086 log->l_covered_state = XLOG_STATE_COVER_IDLE;
1087 log->l_flags |= XLOG_ACTIVE_RECOVERY;
1088
1089 log->l_prev_block = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001091 xlog_assign_atomic_lsn(&log->l_tail_lsn, 1, 0);
1092 xlog_assign_atomic_lsn(&log->l_last_sync_lsn, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 log->l_curr_cycle = 1; /* 0 is bad since this is initial value */
Christoph Hellwigc303c5b2012-02-20 02:31:26 +00001094
1095 xlog_grant_head_init(&log->l_reserve_head);
1096 xlog_grant_head_init(&log->l_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Dave Chinnera6cb7672009-04-06 18:39:27 +02001098 error = EFSCORRUPTED;
Eric Sandeen62118702008-03-06 13:44:28 +11001099 if (xfs_sb_version_hassector(&mp->m_sb)) {
Alex Elder69ce58f2010-04-20 17:09:59 +10001100 log2_size = mp->m_sb.sb_logsectlog;
1101 if (log2_size < BBSHIFT) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001102 xfs_warn(mp, "Log sector size too small (0x%x < 0x%x)",
1103 log2_size, BBSHIFT);
Alex Elder69ce58f2010-04-20 17:09:59 +10001104 goto out_free_log;
1105 }
1106
1107 log2_size -= BBSHIFT;
1108 if (log2_size > mp->m_sectbb_log) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001109 xfs_warn(mp, "Log sector size too large (0x%x > 0x%x)",
1110 log2_size, mp->m_sectbb_log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001111 goto out_free_log;
1112 }
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* for larger sector sizes, must have v2 or external log */
Alex Elder69ce58f2010-04-20 17:09:59 +10001115 if (log2_size && log->l_logBBstart > 0 &&
1116 !xfs_sb_version_haslogv2(&mp->m_sb)) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001117 xfs_warn(mp,
1118 "log sector size (0x%x) invalid for configuration.",
1119 log2_size);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001120 goto out_free_log;
1121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Alex Elder69ce58f2010-04-20 17:09:59 +10001123 log->l_sectBBsize = 1 << log2_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 xlog_get_iclog_buffer_size(mp, log);
1126
Dave Chinnera6cb7672009-04-06 18:39:27 +02001127 error = ENOMEM;
Christoph Hellwig4347b9d2011-10-10 16:52:48 +00001128 bp = xfs_buf_alloc(mp->m_logdev_targp, 0, log->l_iclog_size, 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001129 if (!bp)
1130 goto out_free_log;
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001131 bp->b_iodone = xlog_iodone;
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001132 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 log->l_xbuf = bp;
1134
Eric Sandeen007c61c2007-10-11 17:43:56 +10001135 spin_lock_init(&log->l_icloglock);
Dave Chinnereb40a872010-12-21 12:09:01 +11001136 init_waitqueue_head(&log->l_flush_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1139 ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1140
1141 iclogp = &log->l_iclog;
1142 /*
1143 * The amount of memory to allocate for the iclog structure is
1144 * rather funky due to the way the structure is defined. It is
1145 * done this way so that we can use different sizes for machines
1146 * with different amounts of memory. See the definition of
1147 * xlog_in_core_t in xfs_log_priv.h for details.
1148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ASSERT(log->l_iclog_size >= 4096);
1150 for (i=0; i < log->l_iclog_bufs; i++) {
Dave Chinner644c3562008-11-10 16:50:24 +11001151 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1152 if (!*iclogp)
1153 goto out_free_iclog;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 iclog = *iclogp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 iclog->ic_prev = prev_iclog;
1157 prev_iclog = iclog;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001158
Dave Chinner686865f2010-09-24 20:07:47 +10001159 bp = xfs_buf_get_uncached(mp->m_logdev_targp,
1160 log->l_iclog_size, 0);
Dave Chinner644c3562008-11-10 16:50:24 +11001161 if (!bp)
1162 goto out_free_iclog;
Christoph Hellwigc8da0fa2011-07-08 14:36:25 +02001163
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001164 bp->b_iodone = xlog_iodone;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +10001165 iclog->ic_bp = bp;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001166 iclog->ic_data = bp->b_addr;
David Chinner4679b2d2008-04-10 12:18:54 +10001167#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
David Chinner4679b2d2008-04-10 12:18:54 +10001169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 head = &iclog->ic_header;
1171 memset(head, 0, sizeof(xlog_rec_header_t));
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001172 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1173 head->h_version = cpu_to_be32(
Eric Sandeen62118702008-03-06 13:44:28 +11001174 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001175 head->h_size = cpu_to_be32(log->l_iclog_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* new fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001177 head->h_fmt = cpu_to_be32(XLOG_FMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1181 iclog->ic_state = XLOG_STATE_ACTIVE;
1182 iclog->ic_log = log;
David Chinner114d23a2008-04-10 12:18:39 +10001183 atomic_set(&iclog->ic_refcnt, 0);
1184 spin_lock_init(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 iclog->ic_callback_tail = &(iclog->ic_callback);
Christoph Hellwigb28708d2008-11-28 14:23:38 +11001186 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001188 ASSERT(xfs_buf_islocked(iclog->ic_bp));
Dave Chinnereb40a872010-12-21 12:09:01 +11001189 init_waitqueue_head(&iclog->ic_force_wait);
1190 init_waitqueue_head(&iclog->ic_write_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 iclogp = &iclog->ic_next;
1193 }
1194 *iclogp = log->l_iclog; /* complete ring */
1195 log->l_iclog->ic_prev = prev_iclog; /* re-write 1st prev ptr */
1196
Dave Chinner71e330b2010-05-21 14:37:18 +10001197 error = xlog_cil_init(log);
1198 if (error)
1199 goto out_free_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return log;
Dave Chinner644c3562008-11-10 16:50:24 +11001201
1202out_free_iclog:
1203 for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1204 prev_iclog = iclog->ic_next;
Dave Chinnereb40a872010-12-21 12:09:01 +11001205 if (iclog->ic_bp)
Dave Chinner644c3562008-11-10 16:50:24 +11001206 xfs_buf_free(iclog->ic_bp);
Dave Chinner644c3562008-11-10 16:50:24 +11001207 kmem_free(iclog);
1208 }
1209 spinlock_destroy(&log->l_icloglock);
Dave Chinner644c3562008-11-10 16:50:24 +11001210 xfs_buf_free(log->l_xbuf);
1211out_free_log:
1212 kmem_free(log);
Dave Chinnera6cb7672009-04-06 18:39:27 +02001213out:
1214 return ERR_PTR(-error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215} /* xlog_alloc_log */
1216
1217
1218/*
1219 * Write out the commit record of a transaction associated with the given
1220 * ticket. Return the lsn of the commit record.
1221 */
1222STATIC int
Dave Chinner55b66332010-03-23 11:43:17 +11001223xlog_commit_record(
1224 struct log *log,
1225 struct xlog_ticket *ticket,
1226 struct xlog_in_core **iclog,
1227 xfs_lsn_t *commitlsnp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Dave Chinner55b66332010-03-23 11:43:17 +11001229 struct xfs_mount *mp = log->l_mp;
1230 int error;
1231 struct xfs_log_iovec reg = {
1232 .i_addr = NULL,
1233 .i_len = 0,
1234 .i_type = XLOG_REG_TYPE_COMMIT,
1235 };
1236 struct xfs_log_vec vec = {
1237 .lv_niovecs = 1,
1238 .lv_iovecp = &reg,
1239 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 ASSERT_ALWAYS(iclog);
Dave Chinner55b66332010-03-23 11:43:17 +11001242 error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1243 XLOG_COMMIT_TRANS);
1244 if (error)
Nathan Scott7d04a332006-06-09 14:58:38 +10001245 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Jesper Juhl014c2542006-01-15 02:37:08 +01001246 return error;
Dave Chinner55b66332010-03-23 11:43:17 +11001247}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249/*
1250 * Push on the buffer cache code if we ever use more than 75% of the on-disk
1251 * log space. This code pushes on the lsn which would supposedly free up
1252 * the 25% which we want to leave free. We may need to adopt a policy which
1253 * pushes on an lsn which is further along in the log once we reach the high
1254 * water mark. In this manner, we would be creating a low water mark.
1255 */
David Chinnera8272ce2007-11-23 16:28:09 +11001256STATIC void
Dave Chinner2ced19c2010-12-21 12:09:20 +11001257xlog_grant_push_ail(
1258 struct log *log,
1259 int need_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Dave Chinner2ced19c2010-12-21 12:09:20 +11001261 xfs_lsn_t threshold_lsn = 0;
Dave Chinner84f3c682010-12-03 22:11:29 +11001262 xfs_lsn_t last_sync_lsn;
Dave Chinner2ced19c2010-12-21 12:09:20 +11001263 int free_blocks;
1264 int free_bytes;
1265 int threshold_block;
1266 int threshold_cycle;
1267 int free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Dave Chinner2ced19c2010-12-21 12:09:20 +11001269 ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Christoph Hellwig28496962012-02-20 02:31:25 +00001271 free_bytes = xlog_space_left(log, &log->l_reserve_head.grant);
Dave Chinner2ced19c2010-12-21 12:09:20 +11001272 free_blocks = BTOBBT(free_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Dave Chinner2ced19c2010-12-21 12:09:20 +11001274 /*
1275 * Set the threshold for the minimum number of free blocks in the
1276 * log to the maximum of what the caller needs, one quarter of the
1277 * log, and 256 blocks.
1278 */
1279 free_threshold = BTOBB(need_bytes);
1280 free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1281 free_threshold = MAX(free_threshold, 256);
1282 if (free_blocks >= free_threshold)
1283 return;
1284
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11001285 xlog_crack_atomic_lsn(&log->l_tail_lsn, &threshold_cycle,
1286 &threshold_block);
1287 threshold_block += free_threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (threshold_block >= log->l_logBBsize) {
Dave Chinner2ced19c2010-12-21 12:09:20 +11001289 threshold_block -= log->l_logBBsize;
1290 threshold_cycle += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Dave Chinner2ced19c2010-12-21 12:09:20 +11001292 threshold_lsn = xlog_assign_lsn(threshold_cycle,
1293 threshold_block);
1294 /*
1295 * Don't pass in an lsn greater than the lsn of the last
Dave Chinner84f3c682010-12-03 22:11:29 +11001296 * log record known to be on disk. Use a snapshot of the last sync lsn
1297 * so that it doesn't change between the compare and the set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 */
Dave Chinner84f3c682010-12-03 22:11:29 +11001299 last_sync_lsn = atomic64_read(&log->l_last_sync_lsn);
1300 if (XFS_LSN_CMP(threshold_lsn, last_sync_lsn) > 0)
1301 threshold_lsn = last_sync_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Dave Chinner2ced19c2010-12-21 12:09:20 +11001303 /*
1304 * Get the transaction layer to kick the dirty buffers out to
1305 * disk asynchronously. No point in trying to do this if
1306 * the filesystem is shutting down.
1307 */
1308 if (!XLOG_FORCED_SHUTDOWN(log))
Dave Chinnerfd074842011-04-08 12:45:07 +10001309 xfs_ail_push(log->l_ailp, threshold_lsn);
Dave Chinner2ced19c2010-12-21 12:09:20 +11001310}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001312/*
1313 * The bdstrat callback function for log bufs. This gives us a central
1314 * place to trap bufs in case we get hit by a log I/O error and need to
1315 * shutdown. Actually, in practice, even when we didn't get a log error,
1316 * we transition the iclogs to IOERROR state *after* flushing all existing
1317 * iclogs to disk. This is because we don't want anymore new transactions to be
1318 * started or completed afterwards.
1319 */
1320STATIC int
1321xlog_bdstrat(
1322 struct xfs_buf *bp)
1323{
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001324 struct xlog_in_core *iclog = bp->b_fspriv;
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001325
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001326 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001327 xfs_buf_ioerror(bp, EIO);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001328 xfs_buf_stale(bp);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001329 xfs_buf_ioend(bp, 0);
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001330 /*
1331 * It would seem logical to return EIO here, but we rely on
1332 * the log state machine to propagate I/O errors instead of
1333 * doing it here.
1334 */
1335 return 0;
1336 }
1337
Christoph Hellwig873ff5502010-01-13 22:17:57 +00001338 xfs_buf_iorequest(bp);
1339 return 0;
1340}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342/*
1343 * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
1344 * fashion. Previously, we should have moved the current iclog
1345 * ptr in the log to point to the next available iclog. This allows further
1346 * write to continue while this code syncs out an iclog ready to go.
1347 * Before an in-core log can be written out, the data section must be scanned
1348 * to save away the 1st word of each BBSIZE block into the header. We replace
1349 * it with the current cycle count. Each BBSIZE block is tagged with the
1350 * cycle count because there in an implicit assumption that drives will
1351 * guarantee that entire 512 byte blocks get written at once. In other words,
1352 * we can't have part of a 512 byte block written and part not written. By
1353 * tagging each block, we will know which blocks are valid when recovering
1354 * after an unclean shutdown.
1355 *
1356 * This routine is single threaded on the iclog. No other thread can be in
1357 * this routine with the same iclog. Changing contents of iclog can there-
1358 * fore be done without grabbing the state machine lock. Updating the global
1359 * log will require grabbing the lock though.
1360 *
1361 * The entire log manager uses a logical block numbering scheme. Only
1362 * log_sync (and then only bwrite()) know about the fact that the log may
1363 * not start with block zero on a given device. The log block start offset
1364 * is added immediately before calling bwrite().
1365 */
1366
David Chinnera8272ce2007-11-23 16:28:09 +11001367STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368xlog_sync(xlog_t *log,
1369 xlog_in_core_t *iclog)
1370{
1371 xfs_caddr_t dptr; /* pointer to byte sized element */
1372 xfs_buf_t *bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001373 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 uint count; /* byte count of bwrite */
1375 uint count_init; /* initial count before roundup */
1376 int roundoff; /* roundoff to BB or stripe */
1377 int split = 0; /* split write into two regions */
1378 int error;
Eric Sandeen62118702008-03-06 13:44:28 +11001379 int v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 XFS_STATS_INC(xs_log_writes);
David Chinner155cc6b2008-03-06 13:44:14 +11001382 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* Add for LR header */
1385 count_init = log->l_iclog_hsize + iclog->ic_offset;
1386
1387 /* Round out the log write size */
1388 if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1389 /* we have a v2 stripe unit to use */
1390 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1391 } else {
1392 count = BBTOB(BTOBB(count_init));
1393 }
1394 roundoff = count - count_init;
1395 ASSERT(roundoff >= 0);
1396 ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 &&
1397 roundoff < log->l_mp->m_sb.sb_logsunit)
1398 ||
1399 (log->l_mp->m_sb.sb_logsunit <= 1 &&
1400 roundoff < BBTOB(1)));
1401
1402 /* move grant heads by roundoff in sync */
Christoph Hellwig28496962012-02-20 02:31:25 +00001403 xlog_grant_add_space(log, &log->l_reserve_head.grant, roundoff);
1404 xlog_grant_add_space(log, &log->l_write_head.grant, roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 /* put cycle number in every block */
1407 xlog_pack_data(log, iclog, roundoff);
1408
1409 /* real byte length */
1410 if (v2) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001411 iclog->ic_header.h_len =
1412 cpu_to_be32(iclog->ic_offset + roundoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001414 iclog->ic_header.h_len =
1415 cpu_to_be32(iclog->ic_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
Nathan Scottf5faad72006-07-28 17:04:44 +10001418 bp = iclog->ic_bp;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001419 XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1422
1423 /* Do we need to split this write into 2 parts? */
1424 if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1425 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1426 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1427 iclog->ic_bwritecnt = 2; /* split into 2 writes */
1428 } else {
1429 iclog->ic_bwritecnt = 1;
1430 }
David Chinner511105b2007-05-24 15:21:57 +10001431 XFS_BUF_SET_COUNT(bp, count);
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001432 bp->b_fspriv = iclog;
Nathan Scottf5faad72006-07-28 17:04:44 +10001433 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 XFS_BUF_ASYNC(bp);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001435 bp->b_flags |= XBF_SYNCIO;
Christoph Hellwig651701d2010-06-28 10:34:34 -04001436
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001437 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER) {
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001438 bp->b_flags |= XBF_FUA;
1439
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001440 /*
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001441 * Flush the data device before flushing the log to make
1442 * sure all meta data written back from the AIL actually made
1443 * it to disk before stamping the new log tail LSN into the
1444 * log buffer. For an external log we need to issue the
1445 * flush explicitly, and unfortunately synchronously here;
1446 * for an internal log we can simply use the block layer
1447 * state machine for preflushes.
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001448 */
1449 if (log->l_mp->m_logdev_targp != log->l_mp->m_ddev_targp)
1450 xfs_blkdev_issue_flush(log->l_mp->m_ddev_targp);
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001451 else
1452 bp->b_flags |= XBF_FLUSH;
Christoph Hellwiga27a2632011-06-16 12:02:23 +00001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1456 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1457
1458 xlog_verify_iclog(log, iclog, count, B_TRUE);
1459
1460 /* account for log which doesn't start at block #0 */
1461 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1462 /*
1463 * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1464 * is shutting down.
1465 */
1466 XFS_BUF_WRITE(bp);
1467
Christoph Hellwig901796a2011-10-10 16:52:49 +00001468 error = xlog_bdstrat(bp);
1469 if (error) {
1470 xfs_buf_ioerror_alert(bp, "xlog_sync");
Jesper Juhl014c2542006-01-15 02:37:08 +01001471 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473 if (split) {
Nathan Scottf5faad72006-07-28 17:04:44 +10001474 bp = iclog->ic_log->l_xbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 XFS_BUF_SET_ADDR(bp, 0); /* logical 0 */
Chandra Seetharaman02fe03d2011-07-22 23:40:22 +00001476 xfs_buf_associate_memory(bp,
1477 (char *)&iclog->ic_header + count, split);
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001478 bp->b_fspriv = iclog;
Nathan Scottf5faad72006-07-28 17:04:44 +10001479 XFS_BUF_ZEROFLAGS(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 XFS_BUF_ASYNC(bp);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +02001481 bp->b_flags |= XBF_SYNCIO;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001482 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
Christoph Hellwige163cbd2011-07-08 14:36:36 +02001483 bp->b_flags |= XBF_FUA;
Chandra Seetharaman62926042011-07-22 23:40:15 +00001484 dptr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 /*
1486 * Bump the cycle numbers at the start of each block
1487 * since this part of the buffer is at the start of
1488 * a new cycle. Watch out for the header magic number
1489 * case, though.
1490 */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001491 for (i = 0; i < split; i += BBSIZE) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001492 be32_add_cpu((__be32 *)dptr, 1);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10001493 if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001494 be32_add_cpu((__be32 *)dptr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 dptr += BBSIZE;
1496 }
1497
1498 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1499 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1500
Nathan Scottc41564b2006-03-29 08:55:14 +10001501 /* account for internal log which doesn't start at block #0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1503 XFS_BUF_WRITE(bp);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001504 error = xlog_bdstrat(bp);
1505 if (error) {
1506 xfs_buf_ioerror_alert(bp, "xlog_sync (split)");
Jesper Juhl014c2542006-01-15 02:37:08 +01001507 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511} /* xlog_sync */
1512
1513
1514/*
Nathan Scottc41564b2006-03-29 08:55:14 +10001515 * Deallocate a log structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 */
David Chinnera8272ce2007-11-23 16:28:09 +11001517STATIC void
Nathan Scottc41564b2006-03-29 08:55:14 +10001518xlog_dealloc_log(xlog_t *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 xlog_in_core_t *iclog, *next_iclog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 int i;
1522
Dave Chinner71e330b2010-05-21 14:37:18 +10001523 xlog_cil_destroy(log);
1524
Dave Chinner44396472011-04-21 09:34:27 +00001525 /*
1526 * always need to ensure that the extra buffer does not point to memory
1527 * owned by another log buffer before we free it.
1528 */
1529 xfs_buf_set_empty(log->l_xbuf, log->l_iclog_size);
1530 xfs_buf_free(log->l_xbuf);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 iclog = log->l_iclog;
1533 for (i=0; i<log->l_iclog_bufs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 xfs_buf_free(iclog->ic_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 next_iclog = iclog->ic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001536 kmem_free(iclog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 iclog = next_iclog;
1538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 spinlock_destroy(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 log->l_mp->m_log = NULL;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001542 kmem_free(log);
Nathan Scottc41564b2006-03-29 08:55:14 +10001543} /* xlog_dealloc_log */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545/*
1546 * Update counters atomically now that memcpy is done.
1547 */
1548/* ARGSUSED */
1549static inline void
1550xlog_state_finish_copy(xlog_t *log,
1551 xlog_in_core_t *iclog,
1552 int record_cnt,
1553 int copy_bytes)
1554{
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001555 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001557 be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 iclog->ic_offset += copy_bytes;
1559
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10001560 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561} /* xlog_state_finish_copy */
1562
1563
1564
1565
1566/*
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001567 * print out info relating to regions written which consume
1568 * the reservation
1569 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001570void
1571xlog_print_tic_res(
1572 struct xfs_mount *mp,
1573 struct xlog_ticket *ticket)
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001574{
1575 uint i;
1576 uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1577
1578 /* match with XLOG_REG_TYPE_* in xfs_log.h */
1579 static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1580 "bformat",
1581 "bchunk",
1582 "efi_format",
1583 "efd_format",
1584 "iformat",
1585 "icore",
1586 "iext",
1587 "ibroot",
1588 "ilocal",
1589 "iattr_ext",
1590 "iattr_broot",
1591 "iattr_local",
1592 "qformat",
1593 "dquot",
1594 "quotaoff",
1595 "LR header",
1596 "unmount",
1597 "commit",
1598 "trans header"
1599 };
1600 static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1601 "SETATTR_NOT_SIZE",
1602 "SETATTR_SIZE",
1603 "INACTIVE",
1604 "CREATE",
1605 "CREATE_TRUNC",
1606 "TRUNCATE_FILE",
1607 "REMOVE",
1608 "LINK",
1609 "RENAME",
1610 "MKDIR",
1611 "RMDIR",
1612 "SYMLINK",
1613 "SET_DMATTRS",
1614 "GROWFS",
1615 "STRAT_WRITE",
1616 "DIOSTRAT",
1617 "WRITE_SYNC",
1618 "WRITEID",
1619 "ADDAFORK",
1620 "ATTRINVAL",
1621 "ATRUNCATE",
1622 "ATTR_SET",
1623 "ATTR_RM",
1624 "ATTR_FLAG",
1625 "CLEAR_AGI_BUCKET",
1626 "QM_SBCHANGE",
1627 "DUMMY1",
1628 "DUMMY2",
1629 "QM_QUOTAOFF",
1630 "QM_DQALLOC",
1631 "QM_SETQLIM",
1632 "QM_DQCLUSTER",
1633 "QM_QINOCREATE",
1634 "QM_QUOTAOFF_END",
1635 "SB_UNIT",
1636 "FSYNC_TS",
1637 "GROWFSRT_ALLOC",
1638 "GROWFSRT_ZERO",
1639 "GROWFSRT_FREE",
1640 "SWAPEXT"
1641 };
1642
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001643 xfs_warn(mp,
Christoph Hellwig93b8a582011-12-06 21:58:07 +00001644 "xlog_write: reservation summary:\n"
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001645 " trans type = %s (%u)\n"
1646 " unit res = %d bytes\n"
1647 " current res = %d bytes\n"
1648 " total reg = %u bytes (o/flow = %u bytes)\n"
1649 " ophdrs = %u (ophdr space = %u bytes)\n"
1650 " ophdr + reg = %u bytes\n"
1651 " num regions = %u\n",
1652 ((ticket->t_trans_type <= 0 ||
1653 ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1654 "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1655 ticket->t_trans_type,
1656 ticket->t_unit_res,
1657 ticket->t_curr_res,
1658 ticket->t_res_arr_sum, ticket->t_res_o_flow,
1659 ticket->t_res_num_ophdrs, ophdr_spc,
1660 ticket->t_res_arr_sum +
1661 ticket->t_res_o_flow + ophdr_spc,
1662 ticket->t_res_num);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001663
1664 for (i = 0; i < ticket->t_res_num; i++) {
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001665 uint r_type = ticket->t_res_arr[i].r_type;
1666 xfs_warn(mp, "region[%u]: %s - %u bytes\n", i,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001667 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1668 "bad-rtype" : res_type_str[r_type-1]),
1669 ticket->t_res_arr[i].r_len);
1670 }
Dave Chinner169a7b02010-05-07 11:05:31 +10001671
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001672 xfs_alert_tag(mp, XFS_PTAG_LOGRES,
Christoph Hellwig93b8a582011-12-06 21:58:07 +00001673 "xlog_write: reservation ran out. Need to up reservation");
Dave Chinner169a7b02010-05-07 11:05:31 +10001674 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001675}
Tim Shimmin7e9c6392005-09-02 16:42:05 +10001676
1677/*
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001678 * Calculate the potential space needed by the log vector. Each region gets
1679 * its own xlog_op_header_t and may need to be double word aligned.
1680 */
1681static int
1682xlog_write_calc_vec_length(
1683 struct xlog_ticket *ticket,
Dave Chinner55b66332010-03-23 11:43:17 +11001684 struct xfs_log_vec *log_vector)
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001685{
Dave Chinner55b66332010-03-23 11:43:17 +11001686 struct xfs_log_vec *lv;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001687 int headers = 0;
1688 int len = 0;
1689 int i;
1690
1691 /* acct for start rec of xact */
1692 if (ticket->t_flags & XLOG_TIC_INITED)
1693 headers++;
1694
Dave Chinner55b66332010-03-23 11:43:17 +11001695 for (lv = log_vector; lv; lv = lv->lv_next) {
1696 headers += lv->lv_niovecs;
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001697
Dave Chinner55b66332010-03-23 11:43:17 +11001698 for (i = 0; i < lv->lv_niovecs; i++) {
1699 struct xfs_log_iovec *vecp = &lv->lv_iovecp[i];
1700
1701 len += vecp->i_len;
1702 xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1703 }
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001704 }
1705
1706 ticket->t_res_num_ophdrs += headers;
1707 len += headers * sizeof(struct xlog_op_header);
1708
1709 return len;
1710}
1711
1712/*
1713 * If first write for transaction, insert start record We can't be trying to
1714 * commit if we are inited. We can't have any "partial_copy" if we are inited.
1715 */
1716static int
1717xlog_write_start_rec(
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001718 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001719 struct xlog_ticket *ticket)
1720{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001721 if (!(ticket->t_flags & XLOG_TIC_INITED))
1722 return 0;
1723
1724 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1725 ophdr->oh_clientid = ticket->t_clientid;
1726 ophdr->oh_len = 0;
1727 ophdr->oh_flags = XLOG_START_TRANS;
1728 ophdr->oh_res2 = 0;
1729
1730 ticket->t_flags &= ~XLOG_TIC_INITED;
1731
1732 return sizeof(struct xlog_op_header);
1733}
1734
1735static xlog_op_header_t *
1736xlog_write_setup_ophdr(
1737 struct log *log,
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001738 struct xlog_op_header *ophdr,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001739 struct xlog_ticket *ticket,
1740 uint flags)
1741{
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001742 ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1743 ophdr->oh_clientid = ticket->t_clientid;
1744 ophdr->oh_res2 = 0;
1745
1746 /* are we copying a commit or unmount record? */
1747 ophdr->oh_flags = flags;
1748
1749 /*
1750 * We've seen logs corrupted with bad transaction client ids. This
1751 * makes sure that XFS doesn't generate them on. Turn this into an EIO
1752 * and shut down the filesystem.
1753 */
1754 switch (ophdr->oh_clientid) {
1755 case XFS_TRANSACTION:
1756 case XFS_VOLUME:
1757 case XFS_LOG:
1758 break;
1759 default:
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001760 xfs_warn(log->l_mp,
Dave Chinnerb5203cd2010-03-23 11:29:44 +11001761 "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1762 ophdr->oh_clientid, ticket);
1763 return NULL;
1764 }
1765
1766 return ophdr;
1767}
1768
1769/*
1770 * Set up the parameters of the region copy into the log. This has
1771 * to handle region write split across multiple log buffers - this
1772 * state is kept external to this function so that this code can
1773 * can be written in an obvious, self documenting manner.
1774 */
1775static int
1776xlog_write_setup_copy(
1777 struct xlog_ticket *ticket,
1778 struct xlog_op_header *ophdr,
1779 int space_available,
1780 int space_required,
1781 int *copy_off,
1782 int *copy_len,
1783 int *last_was_partial_copy,
1784 int *bytes_consumed)
1785{
1786 int still_to_copy;
1787
1788 still_to_copy = space_required - *bytes_consumed;
1789 *copy_off = *bytes_consumed;
1790
1791 if (still_to_copy <= space_available) {
1792 /* write of region completes here */
1793 *copy_len = still_to_copy;
1794 ophdr->oh_len = cpu_to_be32(*copy_len);
1795 if (*last_was_partial_copy)
1796 ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1797 *last_was_partial_copy = 0;
1798 *bytes_consumed = 0;
1799 return 0;
1800 }
1801
1802 /* partial write of region, needs extra log op header reservation */
1803 *copy_len = space_available;
1804 ophdr->oh_len = cpu_to_be32(*copy_len);
1805 ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1806 if (*last_was_partial_copy)
1807 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1808 *bytes_consumed += *copy_len;
1809 (*last_was_partial_copy)++;
1810
1811 /* account for new log op header */
1812 ticket->t_curr_res -= sizeof(struct xlog_op_header);
1813 ticket->t_res_num_ophdrs++;
1814
1815 return sizeof(struct xlog_op_header);
1816}
1817
1818static int
1819xlog_write_copy_finish(
1820 struct log *log,
1821 struct xlog_in_core *iclog,
1822 uint flags,
1823 int *record_cnt,
1824 int *data_cnt,
1825 int *partial_copy,
1826 int *partial_copy_len,
1827 int log_offset,
1828 struct xlog_in_core **commit_iclog)
1829{
1830 if (*partial_copy) {
1831 /*
1832 * This iclog has already been marked WANT_SYNC by
1833 * xlog_state_get_iclog_space.
1834 */
1835 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1836 *record_cnt = 0;
1837 *data_cnt = 0;
1838 return xlog_state_release_iclog(log, iclog);
1839 }
1840
1841 *partial_copy = 0;
1842 *partial_copy_len = 0;
1843
1844 if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1845 /* no more space in this iclog - push it. */
1846 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1847 *record_cnt = 0;
1848 *data_cnt = 0;
1849
1850 spin_lock(&log->l_icloglock);
1851 xlog_state_want_sync(log, iclog);
1852 spin_unlock(&log->l_icloglock);
1853
1854 if (!commit_iclog)
1855 return xlog_state_release_iclog(log, iclog);
1856 ASSERT(flags & XLOG_COMMIT_TRANS);
1857 *commit_iclog = iclog;
1858 }
1859
1860 return 0;
1861}
1862
1863/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 * Write some region out to in-core log
1865 *
1866 * This will be called when writing externally provided regions or when
1867 * writing out a commit record for a given transaction.
1868 *
1869 * General algorithm:
1870 * 1. Find total length of this write. This may include adding to the
1871 * lengths passed in.
1872 * 2. Check whether we violate the tickets reservation.
1873 * 3. While writing to this iclog
1874 * A. Reserve as much space in this iclog as can get
1875 * B. If this is first write, save away start lsn
1876 * C. While writing this region:
1877 * 1. If first write of transaction, write start record
1878 * 2. Write log operation header (header per region)
1879 * 3. Find out if we can fit entire region into this iclog
1880 * 4. Potentially, verify destination memcpy ptr
1881 * 5. Memcpy (partial) region
1882 * 6. If partial copy, release iclog; otherwise, continue
1883 * copying more regions into current iclog
1884 * 4. Mark want sync bit (in simulation mode)
1885 * 5. Release iclog for potential flush to on-disk log.
1886 *
1887 * ERRORS:
1888 * 1. Panic if reservation is overrun. This should never happen since
1889 * reservation amounts are generated internal to the filesystem.
1890 * NOTES:
1891 * 1. Tickets are single threaded data structures.
1892 * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1893 * syncing routine. When a single log_write region needs to span
1894 * multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1895 * on all log operation writes which don't contain the end of the
1896 * region. The XLOG_END_TRANS bit is used for the in-core log
1897 * operation which contains the end of the continued log_write region.
1898 * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1899 * we don't really know exactly how much space will be used. As a result,
1900 * we don't update ic_offset until the end when we know exactly how many
1901 * bytes have been written out.
1902 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001903int
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001904xlog_write(
Dave Chinner55b66332010-03-23 11:43:17 +11001905 struct log *log,
1906 struct xfs_log_vec *log_vector,
Christoph Hellwig35a8a722010-02-15 23:34:54 +00001907 struct xlog_ticket *ticket,
1908 xfs_lsn_t *start_lsn,
1909 struct xlog_in_core **commit_iclog,
1910 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001912 struct xlog_in_core *iclog = NULL;
Dave Chinner55b66332010-03-23 11:43:17 +11001913 struct xfs_log_iovec *vecp;
1914 struct xfs_log_vec *lv;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001915 int len;
1916 int index;
1917 int partial_copy = 0;
1918 int partial_copy_len = 0;
1919 int contwr = 0;
1920 int record_cnt = 0;
1921 int data_cnt = 0;
1922 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001924 *start_lsn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Dave Chinner55b66332010-03-23 11:43:17 +11001926 len = xlog_write_calc_vec_length(ticket, log_vector);
Dave Chinner71e330b2010-05-21 14:37:18 +10001927
Christoph Hellwig93b8a582011-12-06 21:58:07 +00001928 /*
1929 * Region headers and bytes are already accounted for.
1930 * We only need to take into account start records and
1931 * split regions in this function.
1932 */
1933 if (ticket->t_flags & XLOG_TIC_INITED)
1934 ticket->t_curr_res -= sizeof(xlog_op_header_t);
1935
1936 /*
1937 * Commit record headers need to be accounted for. These
1938 * come in as separate writes so are easy to detect.
1939 */
1940 if (flags & (XLOG_COMMIT_TRANS | XLOG_UNMOUNT_TRANS))
1941 ticket->t_curr_res -= sizeof(xlog_op_header_t);
Dave Chinner71e330b2010-05-21 14:37:18 +10001942
1943 if (ticket->t_curr_res < 0)
Dave Chinner55b66332010-03-23 11:43:17 +11001944 xlog_print_tic_res(log->l_mp, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Dave Chinner55b66332010-03-23 11:43:17 +11001946 index = 0;
1947 lv = log_vector;
1948 vecp = lv->lv_iovecp;
1949 while (lv && index < lv->lv_niovecs) {
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001950 void *ptr;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001951 int log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001953 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1954 &contwr, &log_offset);
1955 if (error)
1956 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001958 ASSERT(log_offset <= iclog->ic_size - 1);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001959 ptr = iclog->ic_datap + log_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001961 /* start_lsn is the first lsn written to. That's all we need. */
1962 if (!*start_lsn)
1963 *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001965 /*
1966 * This loop writes out as many regions as can fit in the amount
1967 * of space which was allocated by xlog_state_get_iclog_space().
1968 */
Dave Chinner55b66332010-03-23 11:43:17 +11001969 while (lv && index < lv->lv_niovecs) {
1970 struct xfs_log_iovec *reg = &vecp[index];
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001971 struct xlog_op_header *ophdr;
1972 int start_rec_copy;
1973 int copy_len;
1974 int copy_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Dave Chinner55b66332010-03-23 11:43:17 +11001976 ASSERT(reg->i_len % sizeof(__int32_t) == 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001977 ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001979 start_rec_copy = xlog_write_start_rec(ptr, ticket);
1980 if (start_rec_copy) {
1981 record_cnt++;
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001982 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001983 start_rec_copy);
1984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001986 ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1987 if (!ophdr)
1988 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Christoph Hellwige6b1f272010-03-23 11:47:38 +11001990 xlog_write_adv_cnt(&ptr, &len, &log_offset,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001991 sizeof(struct xlog_op_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001993 len += xlog_write_setup_copy(ticket, ophdr,
1994 iclog->ic_size-log_offset,
Dave Chinner55b66332010-03-23 11:43:17 +11001995 reg->i_len,
Christoph Hellwig99428ad2010-03-23 11:35:45 +11001996 &copy_off, &copy_len,
1997 &partial_copy,
1998 &partial_copy_len);
1999 xlog_verify_dest_ptr(log, ptr);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002000
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002001 /* copy region */
2002 ASSERT(copy_len >= 0);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11002003 memcpy(ptr, reg->i_addr + copy_off, copy_len);
2004 xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
Dave Chinnerb5203cd2010-03-23 11:29:44 +11002005
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002006 copy_len += start_rec_copy + sizeof(xlog_op_header_t);
2007 record_cnt++;
2008 data_cnt += contwr ? copy_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002010 error = xlog_write_copy_finish(log, iclog, flags,
2011 &record_cnt, &data_cnt,
2012 &partial_copy,
2013 &partial_copy_len,
2014 log_offset,
2015 commit_iclog);
2016 if (error)
2017 return error;
2018
2019 /*
2020 * if we had a partial copy, we need to get more iclog
2021 * space but we don't want to increment the region
2022 * index because there is still more is this region to
2023 * write.
2024 *
2025 * If we completed writing this region, and we flushed
2026 * the iclog (indicated by resetting of the record
2027 * count), then we also need to get more log space. If
2028 * this was the last record, though, we are done and
2029 * can just return.
2030 */
2031 if (partial_copy)
2032 break;
2033
Dave Chinner55b66332010-03-23 11:43:17 +11002034 if (++index == lv->lv_niovecs) {
2035 lv = lv->lv_next;
2036 index = 0;
2037 if (lv)
2038 vecp = lv->lv_iovecp;
2039 }
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002040 if (record_cnt == 0) {
Dave Chinner55b66332010-03-23 11:43:17 +11002041 if (!lv)
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002042 return 0;
2043 break;
2044 }
2045 }
2046 }
2047
2048 ASSERT(len == 0);
2049
2050 xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
2051 if (!commit_iclog)
2052 return xlog_state_release_iclog(log, iclog);
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 ASSERT(flags & XLOG_COMMIT_TRANS);
2055 *commit_iclog = iclog;
2056 return 0;
Christoph Hellwig99428ad2010-03-23 11:35:45 +11002057}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059
2060/*****************************************************************************
2061 *
2062 * State Machine functions
2063 *
2064 *****************************************************************************
2065 */
2066
2067/* Clean iclogs starting from the head. This ordering must be
2068 * maintained, so an iclog doesn't become ACTIVE beyond one that
2069 * is SYNCING. This is also required to maintain the notion that we use
David Chinner12017fa2008-08-13 16:34:31 +10002070 * a ordered wait queue to hold off would be writers to the log when every
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 * iclog is trying to sync to disk.
2072 *
2073 * State Change: DIRTY -> ACTIVE
2074 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002075STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076xlog_state_clean_log(xlog_t *log)
2077{
2078 xlog_in_core_t *iclog;
2079 int changed = 0;
2080
2081 iclog = log->l_iclog;
2082 do {
2083 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2084 iclog->ic_state = XLOG_STATE_ACTIVE;
2085 iclog->ic_offset = 0;
David Chinner114d23a2008-04-10 12:18:39 +10002086 ASSERT(iclog->ic_callback == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /*
2088 * If the number of ops in this iclog indicate it just
2089 * contains the dummy transaction, we can
2090 * change state into IDLE (the second time around).
2091 * Otherwise we should change the state into
2092 * NEED a dummy.
2093 * We don't need to cover the dummy.
2094 */
2095 if (!changed &&
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002096 (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2097 XLOG_COVER_OPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 changed = 1;
2099 } else {
2100 /*
2101 * We have two dirty iclogs so start over
2102 * This could also be num of ops indicates
2103 * this is not the dummy going out.
2104 */
2105 changed = 2;
2106 }
2107 iclog->ic_header.h_num_logops = 0;
2108 memset(iclog->ic_header.h_cycle_data, 0,
2109 sizeof(iclog->ic_header.h_cycle_data));
2110 iclog->ic_header.h_lsn = 0;
2111 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2112 /* do nothing */;
2113 else
2114 break; /* stop cleaning */
2115 iclog = iclog->ic_next;
2116 } while (iclog != log->l_iclog);
2117
2118 /* log is locked when we are called */
2119 /*
2120 * Change state for the dummy log recording.
2121 * We usually go to NEED. But we go to NEED2 if the changed indicates
2122 * we are done writing the dummy record.
2123 * If we are done with the second dummy recored (DONE2), then
2124 * we go to IDLE.
2125 */
2126 if (changed) {
2127 switch (log->l_covered_state) {
2128 case XLOG_STATE_COVER_IDLE:
2129 case XLOG_STATE_COVER_NEED:
2130 case XLOG_STATE_COVER_NEED2:
2131 log->l_covered_state = XLOG_STATE_COVER_NEED;
2132 break;
2133
2134 case XLOG_STATE_COVER_DONE:
2135 if (changed == 1)
2136 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2137 else
2138 log->l_covered_state = XLOG_STATE_COVER_NEED;
2139 break;
2140
2141 case XLOG_STATE_COVER_DONE2:
2142 if (changed == 1)
2143 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2144 else
2145 log->l_covered_state = XLOG_STATE_COVER_NEED;
2146 break;
2147
2148 default:
2149 ASSERT(0);
2150 }
2151 }
2152} /* xlog_state_clean_log */
2153
2154STATIC xfs_lsn_t
2155xlog_get_lowest_lsn(
2156 xlog_t *log)
2157{
2158 xlog_in_core_t *lsn_log;
2159 xfs_lsn_t lowest_lsn, lsn;
2160
2161 lsn_log = log->l_iclog;
2162 lowest_lsn = 0;
2163 do {
2164 if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002165 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if ((lsn && !lowest_lsn) ||
2167 (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2168 lowest_lsn = lsn;
2169 }
2170 }
2171 lsn_log = lsn_log->ic_next;
2172 } while (lsn_log != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002173 return lowest_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
2176
2177STATIC void
2178xlog_state_do_callback(
2179 xlog_t *log,
2180 int aborted,
2181 xlog_in_core_t *ciclog)
2182{
2183 xlog_in_core_t *iclog;
2184 xlog_in_core_t *first_iclog; /* used to know when we've
2185 * processed all iclogs once */
2186 xfs_log_callback_t *cb, *cb_next;
2187 int flushcnt = 0;
2188 xfs_lsn_t lowest_lsn;
2189 int ioerrors; /* counter: iclogs with errors */
2190 int loopdidcallbacks; /* flag: inner loop did callbacks*/
2191 int funcdidcallbacks; /* flag: function did callbacks */
2192 int repeats; /* for issuing console warnings if
2193 * looping too many times */
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002194 int wake = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002196 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 first_iclog = iclog = log->l_iclog;
2198 ioerrors = 0;
2199 funcdidcallbacks = 0;
2200 repeats = 0;
2201
2202 do {
2203 /*
2204 * Scan all iclogs starting with the one pointed to by the
2205 * log. Reset this starting point each time the log is
2206 * unlocked (during callbacks).
2207 *
2208 * Keep looping through iclogs until one full pass is made
2209 * without running any callbacks.
2210 */
2211 first_iclog = log->l_iclog;
2212 iclog = log->l_iclog;
2213 loopdidcallbacks = 0;
2214 repeats++;
2215
2216 do {
2217
2218 /* skip all iclogs in the ACTIVE & DIRTY states */
2219 if (iclog->ic_state &
2220 (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2221 iclog = iclog->ic_next;
2222 continue;
2223 }
2224
2225 /*
2226 * Between marking a filesystem SHUTDOWN and stopping
2227 * the log, we do flush all iclogs to disk (if there
2228 * wasn't a log I/O error). So, we do want things to
2229 * go smoothly in case of just a SHUTDOWN w/o a
2230 * LOG_IO_ERROR.
2231 */
2232 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2233 /*
2234 * Can only perform callbacks in order. Since
2235 * this iclog is not in the DONE_SYNC/
2236 * DO_CALLBACK state, we skip the rest and
2237 * just try to clean up. If we set our iclog
2238 * to DO_CALLBACK, we will not process it when
2239 * we retry since a previous iclog is in the
2240 * CALLBACK and the state cannot change since
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002241 * we are holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
2243 if (!(iclog->ic_state &
2244 (XLOG_STATE_DONE_SYNC |
2245 XLOG_STATE_DO_CALLBACK))) {
2246 if (ciclog && (ciclog->ic_state ==
2247 XLOG_STATE_DONE_SYNC)) {
2248 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2249 }
2250 break;
2251 }
2252 /*
2253 * We now have an iclog that is in either the
2254 * DO_CALLBACK or DONE_SYNC states. The other
2255 * states (WANT_SYNC, SYNCING, or CALLBACK were
2256 * caught by the above if and are going to
2257 * clean (i.e. we aren't doing their callbacks)
2258 * see the above if.
2259 */
2260
2261 /*
2262 * We will do one more check here to see if we
2263 * have chased our tail around.
2264 */
2265
2266 lowest_lsn = xlog_get_lowest_lsn(log);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002267 if (lowest_lsn &&
2268 XFS_LSN_CMP(lowest_lsn,
Dave Chinner84f3c682010-12-03 22:11:29 +11002269 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 iclog = iclog->ic_next;
2271 continue; /* Leave this iclog for
2272 * another thread */
2273 }
2274
2275 iclog->ic_state = XLOG_STATE_CALLBACK;
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Dave Chinner84f3c682010-12-03 22:11:29 +11002278 /*
2279 * update the last_sync_lsn before we drop the
2280 * icloglock to ensure we are the only one that
2281 * can update it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 */
Dave Chinner84f3c682010-12-03 22:11:29 +11002283 ASSERT(XFS_LSN_CMP(atomic64_read(&log->l_last_sync_lsn),
2284 be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2285 atomic64_set(&log->l_last_sync_lsn,
2286 be64_to_cpu(iclog->ic_header.h_lsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Dave Chinner84f3c682010-12-03 22:11:29 +11002288 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 ioerrors++;
Dave Chinner84f3c682010-12-03 22:11:29 +11002290
2291 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
David Chinner114d23a2008-04-10 12:18:39 +10002293 /*
2294 * Keep processing entries in the callback list until
2295 * we come around and it is empty. We need to
2296 * atomically see that the list is empty and change the
2297 * state to DIRTY so that we don't miss any more
2298 * callbacks being added.
2299 */
2300 spin_lock(&iclog->ic_callback_lock);
2301 cb = iclog->ic_callback;
Christoph Hellwig4b809162007-08-16 15:37:36 +10002302 while (cb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 iclog->ic_callback_tail = &(iclog->ic_callback);
2304 iclog->ic_callback = NULL;
David Chinner114d23a2008-04-10 12:18:39 +10002305 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /* perform callbacks in the order given */
Christoph Hellwig4b809162007-08-16 15:37:36 +10002308 for (; cb; cb = cb_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 cb_next = cb->cb_next;
2310 cb->cb_func(cb->cb_arg, aborted);
2311 }
David Chinner114d23a2008-04-10 12:18:39 +10002312 spin_lock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 cb = iclog->ic_callback;
2314 }
2315
2316 loopdidcallbacks++;
2317 funcdidcallbacks++;
2318
David Chinner114d23a2008-04-10 12:18:39 +10002319 spin_lock(&log->l_icloglock);
Christoph Hellwig4b809162007-08-16 15:37:36 +10002320 ASSERT(iclog->ic_callback == NULL);
David Chinner114d23a2008-04-10 12:18:39 +10002321 spin_unlock(&iclog->ic_callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2323 iclog->ic_state = XLOG_STATE_DIRTY;
2324
2325 /*
2326 * Transition from DIRTY to ACTIVE if applicable.
2327 * NOP if STATE_IOERROR.
2328 */
2329 xlog_state_clean_log(log);
2330
2331 /* wake up threads waiting in xfs_log_force() */
Dave Chinnereb40a872010-12-21 12:09:01 +11002332 wake_up_all(&iclog->ic_force_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 iclog = iclog->ic_next;
2335 } while (first_iclog != iclog);
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002336
2337 if (repeats > 5000) {
2338 flushcnt += repeats;
2339 repeats = 0;
Dave Chinnera0fa2b62011-03-07 10:01:35 +11002340 xfs_warn(log->l_mp,
Nathan Scotta3c6685e2006-09-28 11:02:14 +10002341 "%s: possible infinite loop (%d iterations)",
Harvey Harrison34a622b2008-04-10 12:19:21 +10002342 __func__, flushcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344 } while (!ioerrors && loopdidcallbacks);
2345
2346 /*
2347 * make one last gasp attempt to see if iclogs are being left in
2348 * limbo..
2349 */
2350#ifdef DEBUG
2351 if (funcdidcallbacks) {
2352 first_iclog = iclog = log->l_iclog;
2353 do {
2354 ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2355 /*
2356 * Terminate the loop if iclogs are found in states
2357 * which will cause other threads to clean up iclogs.
2358 *
2359 * SYNCING - i/o completion will go through logs
2360 * DONE_SYNC - interrupt thread should be waiting for
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002361 * l_icloglock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 * IOERROR - give up hope all ye who enter here
2363 */
2364 if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2365 iclog->ic_state == XLOG_STATE_SYNCING ||
2366 iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2367 iclog->ic_state == XLOG_STATE_IOERROR )
2368 break;
2369 iclog = iclog->ic_next;
2370 } while (first_iclog != iclog);
2371 }
2372#endif
2373
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002374 if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2375 wake = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002376 spin_unlock(&log->l_icloglock);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002377
2378 if (wake)
Dave Chinnereb40a872010-12-21 12:09:01 +11002379 wake_up_all(&log->l_flush_wait);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002380}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382
2383/*
2384 * Finish transitioning this iclog to the dirty state.
2385 *
2386 * Make sure that we completely execute this routine only when this is
2387 * the last call to the iclog. There is a good chance that iclog flushes,
2388 * when we reach the end of the physical log, get turned into 2 separate
2389 * calls to bwrite. Hence, one iclog flush could generate two calls to this
2390 * routine. By using the reference count bwritecnt, we guarantee that only
2391 * the second completion goes through.
2392 *
2393 * Callbacks could take time, so they are done outside the scope of the
David Chinner12017fa2008-08-13 16:34:31 +10002394 * global state machine log lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 */
David Chinnera8272ce2007-11-23 16:28:09 +11002396STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397xlog_state_done_syncing(
2398 xlog_in_core_t *iclog,
2399 int aborted)
2400{
2401 xlog_t *log = iclog->ic_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002403 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2406 iclog->ic_state == XLOG_STATE_IOERROR);
David Chinner155cc6b2008-03-06 13:44:14 +11002407 ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2409
2410
2411 /*
2412 * If we got an error, either on the first buffer, or in the case of
2413 * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2414 * and none should ever be attempted to be written to disk
2415 * again.
2416 */
2417 if (iclog->ic_state != XLOG_STATE_IOERROR) {
2418 if (--iclog->ic_bwritecnt == 1) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002419 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 return;
2421 }
2422 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2423 }
2424
2425 /*
2426 * Someone could be sleeping prior to writing out the next
2427 * iclog buffer, we wake them all, one will get to do the
2428 * I/O, the others get to wait for the result.
2429 */
Dave Chinnereb40a872010-12-21 12:09:01 +11002430 wake_up_all(&iclog->ic_write_wait);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002431 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 xlog_state_do_callback(log, aborted, iclog); /* also cleans log */
2433} /* xlog_state_done_syncing */
2434
2435
2436/*
2437 * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
David Chinner12017fa2008-08-13 16:34:31 +10002438 * sleep. We wait on the flush queue on the head iclog as that should be
2439 * the first iclog to complete flushing. Hence if all iclogs are syncing,
2440 * we will wait here and all new writes will sleep until a sync completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 *
2442 * The in-core logs are used in a circular fashion. They are not used
2443 * out-of-order even when an iclog past the head is free.
2444 *
2445 * return:
2446 * * log_offset where xlog_write() can start writing into the in-core
2447 * log's data space.
2448 * * in-core log pointer to which xlog_write() should write.
2449 * * boolean indicating this is a continued write to an in-core log.
2450 * If this is the last write, then the in-core log's offset field
2451 * needs to be incremented, depending on the amount of data which
2452 * is copied.
2453 */
David Chinnera8272ce2007-11-23 16:28:09 +11002454STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455xlog_state_get_iclog_space(xlog_t *log,
2456 int len,
2457 xlog_in_core_t **iclogp,
2458 xlog_ticket_t *ticket,
2459 int *continued_write,
2460 int *logoffsetp)
2461{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 int log_offset;
2463 xlog_rec_header_t *head;
2464 xlog_in_core_t *iclog;
2465 int error;
2466
2467restart:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002468 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 if (XLOG_FORCED_SHUTDOWN(log)) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002470 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 return XFS_ERROR(EIO);
2472 }
2473
2474 iclog = log->l_iclog;
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002475 if (iclog->ic_state != XLOG_STATE_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 XFS_STATS_INC(xs_log_noiclogs);
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002477
2478 /* Wait for log writes to have flushed */
Dave Chinnereb40a872010-12-21 12:09:01 +11002479 xlog_wait(&log->l_flush_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 goto restart;
2481 }
Matthew Wilcoxd748c622008-05-19 16:34:27 +10002482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 head = &iclog->ic_header;
2484
David Chinner155cc6b2008-03-06 13:44:14 +11002485 atomic_inc(&iclog->ic_refcnt); /* prevents sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 log_offset = iclog->ic_offset;
2487
2488 /* On the 1st write to an iclog, figure out lsn. This works
2489 * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2490 * committing to. If the offset is set, that's how many blocks
2491 * must be written.
2492 */
2493 if (log_offset == 0) {
2494 ticket->t_curr_res -= log->l_iclog_hsize;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002495 xlog_tic_add_region(ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +10002496 log->l_iclog_hsize,
2497 XLOG_REG_TYPE_LRHEADER);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002498 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2499 head->h_lsn = cpu_to_be64(
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10002500 xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 ASSERT(log->l_curr_block >= 0);
2502 }
2503
2504 /* If there is enough room to write everything, then do it. Otherwise,
2505 * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2506 * bit is on, so this will get flushed out. Don't update ic_offset
2507 * until you know exactly how many bytes get copied. Therefore, wait
2508 * until later to update ic_offset.
2509 *
2510 * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2511 * can fit into remaining data section.
2512 */
2513 if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2514 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2515
Dave Chinner49641f12008-07-11 17:43:55 +10002516 /*
2517 * If I'm the only one writing to this iclog, sync it to disk.
2518 * We need to do an atomic compare and decrement here to avoid
2519 * racing with concurrent atomic_dec_and_lock() calls in
2520 * xlog_state_release_iclog() when there is more than one
2521 * reference to the iclog.
2522 */
2523 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2524 /* we are the only one */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002525 spin_unlock(&log->l_icloglock);
Dave Chinner49641f12008-07-11 17:43:55 +10002526 error = xlog_state_release_iclog(log, iclog);
2527 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002528 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 } else {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002530 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
2532 goto restart;
2533 }
2534
2535 /* Do we have enough room to write the full amount in the remainder
2536 * of this iclog? Or must we continue a write on the next iclog and
2537 * mark this iclog as completely taken? In the case where we switch
2538 * iclogs (to mark it taken), this particular iclog will release/sync
2539 * to disk in xlog_write().
2540 */
2541 if (len <= iclog->ic_size - iclog->ic_offset) {
2542 *continued_write = 0;
2543 iclog->ic_offset += len;
2544 } else {
2545 *continued_write = 1;
2546 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2547 }
2548 *iclogp = iclog;
2549
2550 ASSERT(iclog->ic_offset <= iclog->ic_size);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002551 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 *logoffsetp = log_offset;
2554 return 0;
2555} /* xlog_state_get_iclog_space */
2556
2557/*
2558 * Atomically get the log space required for a log ticket.
2559 *
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002560 * Once a ticket gets put onto the reserveq, it will only return after the
2561 * needed reservation is satisfied.
Dave Chinner3f16b982010-12-21 12:29:01 +11002562 *
2563 * This function is structured so that it has a lock free fast path. This is
2564 * necessary because every new transaction reservation will come through this
2565 * path. Hence any lock will be globally hot if we take it unconditionally on
2566 * every pass.
2567 *
Christoph Hellwig28496962012-02-20 02:31:25 +00002568 * As tickets are only ever moved on and off the l_reserve.waiters under the
2569 * l_reserve.lock, we only need to take that lock if we are going to add
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002570 * the ticket to the queue and sleep. We can avoid taking the lock if the ticket
2571 * was never added to the reserveq because the t_queue list head will be empty
2572 * and we hold the only reference to it so it can safely be checked unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 */
2574STATIC int
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002575xlog_grant_log_space(
2576 struct log *log,
2577 struct xlog_ticket *tic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002579 int free_bytes, need_bytes;
2580 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002582 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002584 trace_xfs_log_grant_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002586 /*
2587 * If there are other waiters on the queue then give them a chance at
2588 * logspace before us. Wake up the first waiters, if we do not wake
2589 * up all the waiters then go to sleep waiting for more free space,
2590 * otherwise try to get some space for this transaction.
2591 */
Dave Chinner3f16b982010-12-21 12:29:01 +11002592 need_bytes = tic->t_unit_res;
2593 if (tic->t_flags & XFS_LOG_PERM_RESERV)
2594 need_bytes *= tic->t_ocnt;
Christoph Hellwig28496962012-02-20 02:31:25 +00002595 free_bytes = xlog_space_left(log, &log->l_reserve_head.grant);
2596 if (!list_empty_careful(&log->l_reserve_head.waiters)) {
2597 spin_lock(&log->l_reserve_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002598 if (!xlog_reserveq_wake(log, &free_bytes) ||
2599 free_bytes < need_bytes)
2600 error = xlog_reserveq_wait(log, tic, need_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +00002601 spin_unlock(&log->l_reserve_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002602 } else if (free_bytes < need_bytes) {
Christoph Hellwig28496962012-02-20 02:31:25 +00002603 spin_lock(&log->l_reserve_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002604 error = xlog_reserveq_wait(log, tic, need_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +00002605 spin_unlock(&log->l_reserve_head.lock);
Dave Chinner3f16b982010-12-21 12:29:01 +11002606 }
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002607 if (error)
2608 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Christoph Hellwig28496962012-02-20 02:31:25 +00002610 xlog_grant_add_space(log, &log->l_reserve_head.grant, need_bytes);
2611 xlog_grant_add_space(log, &log->l_write_head.grant, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002612 trace_xfs_log_grant_exit(log, tic);
Dave Chinner3f336c62010-12-21 12:02:52 +11002613 xlog_verify_grant_tail(log);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return 0;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002615}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617/*
2618 * Replenish the byte reservation required by moving the grant write head.
2619 *
Dave Chinner3f16b982010-12-21 12:29:01 +11002620 * Similar to xlog_grant_log_space, the function is structured to have a lock
2621 * free fast path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 */
2623STATIC int
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002624xlog_regrant_write_log_space(
2625 struct log *log,
2626 struct xlog_ticket *tic)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002628 int free_bytes, need_bytes;
2629 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 tic->t_curr_res = tic->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002632 xlog_tic_reset_res(tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 if (tic->t_cnt > 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01002635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002637 ASSERT(!(log->l_flags & XLOG_ACTIVE_RECOVERY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002639 trace_xfs_log_regrant_write_enter(log, tic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002641 /*
2642 * If there are other waiters on the queue then give them a chance at
2643 * logspace before us. Wake up the first waiters, if we do not wake
2644 * up all the waiters then go to sleep waiting for more free space,
2645 * otherwise try to get some space for this transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 */
Dave Chinner9d7fef72009-04-06 18:42:59 +02002647 need_bytes = tic->t_unit_res;
Christoph Hellwig28496962012-02-20 02:31:25 +00002648 free_bytes = xlog_space_left(log, &log->l_write_head.grant);
2649 if (!list_empty_careful(&log->l_write_head.waiters)) {
2650 spin_lock(&log->l_write_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002651 if (!xlog_writeq_wake(log, &free_bytes) ||
2652 free_bytes < need_bytes)
2653 error = xlog_writeq_wait(log, tic, need_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +00002654 spin_unlock(&log->l_write_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002655 } else if (free_bytes < need_bytes) {
Christoph Hellwig28496962012-02-20 02:31:25 +00002656 spin_lock(&log->l_write_head.lock);
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002657 error = xlog_writeq_wait(log, tic, need_bytes);
Christoph Hellwig28496962012-02-20 02:31:25 +00002658 spin_unlock(&log->l_write_head.lock);
Dave Chinner3f16b982010-12-21 12:29:01 +11002659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002661 if (error)
2662 return error;
2663
Christoph Hellwig28496962012-02-20 02:31:25 +00002664 xlog_grant_add_space(log, &log->l_write_head.grant, need_bytes);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002665 trace_xfs_log_regrant_write_exit(log, tic);
Dave Chinner3f336c62010-12-21 12:02:52 +11002666 xlog_verify_grant_tail(log);
Jesper Juhl014c2542006-01-15 02:37:08 +01002667 return 0;
Christoph Hellwig9f9c19e2011-11-28 08:17:36 +00002668}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670/* The first cnt-1 times through here we don't need to
2671 * move the grant write head because the permanent
2672 * reservation has reserved cnt times the unit amount.
2673 * Release part of current permanent unit reservation and
2674 * reset current reservation to be one units worth. Also
2675 * move grant reservation head forward.
2676 */
2677STATIC void
2678xlog_regrant_reserve_log_space(xlog_t *log,
2679 xlog_ticket_t *ticket)
2680{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002681 trace_xfs_log_regrant_reserve_enter(log, ticket);
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (ticket->t_cnt > 0)
2684 ticket->t_cnt--;
2685
Christoph Hellwig28496962012-02-20 02:31:25 +00002686 xlog_grant_sub_space(log, &log->l_reserve_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002687 ticket->t_curr_res);
Christoph Hellwig28496962012-02-20 02:31:25 +00002688 xlog_grant_sub_space(log, &log->l_write_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002689 ticket->t_curr_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002691 xlog_tic_reset_res(ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002692
2693 trace_xfs_log_regrant_reserve_sub(log, ticket);
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 /* just return if we still have some of the pre-reserved space */
Dave Chinnerd0eb2f32010-12-21 12:29:14 +11002696 if (ticket->t_cnt > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Christoph Hellwig28496962012-02-20 02:31:25 +00002699 xlog_grant_add_space(log, &log->l_reserve_head.grant,
Dave Chinnera69ed032010-12-21 12:08:20 +11002700 ticket->t_unit_res);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002701
2702 trace_xfs_log_regrant_reserve_exit(log, ticket);
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 ticket->t_curr_res = ticket->t_unit_res;
Christoph Hellwig0adba532007-08-30 17:21:46 +10002705 xlog_tic_reset_res(ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706} /* xlog_regrant_reserve_log_space */
2707
2708
2709/*
2710 * Give back the space left from a reservation.
2711 *
2712 * All the information we need to make a correct determination of space left
2713 * is present. For non-permanent reservations, things are quite easy. The
2714 * count should have been decremented to zero. We only need to deal with the
2715 * space remaining in the current reservation part of the ticket. If the
2716 * ticket contains a permanent reservation, there may be left over space which
2717 * needs to be released. A count of N means that N-1 refills of the current
2718 * reservation can be done before we need to ask for more space. The first
2719 * one goes to fill up the first current reservation. Once we run out of
2720 * space, the count will stay at zero and the only space remaining will be
2721 * in the current reservation field.
2722 */
2723STATIC void
2724xlog_ungrant_log_space(xlog_t *log,
2725 xlog_ticket_t *ticket)
2726{
Dave Chinner663e4962010-12-21 12:06:05 +11002727 int bytes;
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (ticket->t_cnt > 0)
2730 ticket->t_cnt--;
2731
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002732 trace_xfs_log_ungrant_enter(log, ticket);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002733 trace_xfs_log_ungrant_sub(log, ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Dave Chinner663e4962010-12-21 12:06:05 +11002735 /*
2736 * If this is a permanent reservation ticket, we may be able to free
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 * up more space based on the remaining count.
2738 */
Dave Chinner663e4962010-12-21 12:06:05 +11002739 bytes = ticket->t_curr_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (ticket->t_cnt > 0) {
2741 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
Dave Chinner663e4962010-12-21 12:06:05 +11002742 bytes += ticket->t_unit_res*ticket->t_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 }
2744
Christoph Hellwig28496962012-02-20 02:31:25 +00002745 xlog_grant_sub_space(log, &log->l_reserve_head.grant, bytes);
2746 xlog_grant_sub_space(log, &log->l_write_head.grant, bytes);
Dave Chinner663e4962010-12-21 12:06:05 +11002747
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002748 trace_xfs_log_ungrant_exit(log, ticket);
2749
Christoph Hellwigcfb7cdc2012-02-20 02:31:23 +00002750 xfs_log_space_wake(log->l_mp);
Christoph Hellwig09a423a2012-02-20 02:31:20 +00002751}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 * Flush iclog to disk if this is the last reference to the given iclog and
2755 * the WANT_SYNC bit is set.
2756 *
2757 * When this function is entered, the iclog is not necessarily in the
2758 * WANT_SYNC state. It may be sitting around waiting to get filled.
2759 *
2760 *
2761 */
David Chinnera8272ce2007-11-23 16:28:09 +11002762STATIC int
David Chinnerb5893342008-03-06 13:44:06 +11002763xlog_state_release_iclog(
2764 xlog_t *log,
2765 xlog_in_core_t *iclog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 int sync = 0; /* do we sync? */
2768
David Chinner155cc6b2008-03-06 13:44:14 +11002769 if (iclog->ic_state & XLOG_STATE_IOERROR)
2770 return XFS_ERROR(EIO);
2771
2772 ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2773 if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2774 return 0;
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002777 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return XFS_ERROR(EIO);
2779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2781 iclog->ic_state == XLOG_STATE_WANT_SYNC);
2782
David Chinner155cc6b2008-03-06 13:44:14 +11002783 if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
David Chinnerb5893342008-03-06 13:44:06 +11002784 /* update tail before writing to iclog */
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11002785 xfs_lsn_t tail_lsn = xlog_assign_tail_lsn(log->l_mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 sync++;
2787 iclog->ic_state = XLOG_STATE_SYNCING;
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11002788 iclog->ic_header.h_tail_lsn = cpu_to_be64(tail_lsn);
2789 xlog_verify_tail_lsn(log, iclog, tail_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 /* cycle incremented when incrementing curr_block */
2791 }
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002792 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 /*
2795 * We let the log lock go, so it's possible that we hit a log I/O
Nathan Scottc41564b2006-03-29 08:55:14 +10002796 * error or some other SHUTDOWN condition that marks the iclog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2798 * this iclog has consistent data, so we ignore IOERROR
2799 * flags after this point.
2800 */
David Chinnerb5893342008-03-06 13:44:06 +11002801 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 return xlog_sync(log, iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01002803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804} /* xlog_state_release_iclog */
2805
2806
2807/*
2808 * This routine will mark the current iclog in the ring as WANT_SYNC
2809 * and move the current iclog pointer to the next iclog in the ring.
2810 * When this routine is called from xlog_state_get_iclog_space(), the
2811 * exact size of the iclog has not yet been determined. All we know is
2812 * that every data block. We have run out of space in this log record.
2813 */
2814STATIC void
2815xlog_state_switch_iclogs(xlog_t *log,
2816 xlog_in_core_t *iclog,
2817 int eventual_size)
2818{
2819 ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2820 if (!eventual_size)
2821 eventual_size = iclog->ic_offset;
2822 iclog->ic_state = XLOG_STATE_WANT_SYNC;
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002823 iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 log->l_prev_block = log->l_curr_block;
2825 log->l_prev_cycle = log->l_curr_cycle;
2826
2827 /* roll log?: ic_offset changed later */
2828 log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2829
2830 /* Round up to next log-sunit */
Eric Sandeen62118702008-03-06 13:44:28 +11002831 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 log->l_mp->m_sb.sb_logsunit > 1) {
2833 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2834 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2835 }
2836
2837 if (log->l_curr_block >= log->l_logBBsize) {
2838 log->l_curr_cycle++;
2839 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2840 log->l_curr_cycle++;
2841 log->l_curr_block -= log->l_logBBsize;
2842 ASSERT(log->l_curr_block >= 0);
2843 }
2844 ASSERT(iclog == log->l_iclog);
2845 log->l_iclog = iclog->ic_next;
2846} /* xlog_state_switch_iclogs */
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848/*
2849 * Write out all data in the in-core log as of this exact moment in time.
2850 *
2851 * Data may be written to the in-core log during this call. However,
2852 * we don't guarantee this data will be written out. A change from past
2853 * implementation means this routine will *not* write out zero length LRs.
2854 *
2855 * Basically, we try and perform an intelligent scan of the in-core logs.
2856 * If we determine there is no flushable data, we just return. There is no
2857 * flushable data if:
2858 *
2859 * 1. the current iclog is active and has no data; the previous iclog
2860 * is in the active or dirty state.
2861 * 2. the current iclog is drity, and the previous iclog is in the
2862 * active or dirty state.
2863 *
David Chinner12017fa2008-08-13 16:34:31 +10002864 * We may sleep if:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 *
2866 * 1. the current iclog is not in the active nor dirty state.
2867 * 2. the current iclog dirty, and the previous iclog is not in the
2868 * active nor dirty state.
2869 * 3. the current iclog is active, and there is another thread writing
2870 * to this particular iclog.
2871 * 4. a) the current iclog is active and has no other writers
2872 * b) when we return from flushing out this iclog, it is still
2873 * not in the active nor dirty state.
2874 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002875int
2876_xfs_log_force(
2877 struct xfs_mount *mp,
2878 uint flags,
2879 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002881 struct log *log = mp->m_log;
2882 struct xlog_in_core *iclog;
2883 xfs_lsn_t lsn;
2884
2885 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Christoph Hellwig93b8a582011-12-06 21:58:07 +00002887 xlog_cil_force(log);
Dave Chinner71e330b2010-05-21 14:37:18 +10002888
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002889 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 iclog = log->l_iclog;
2892 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002893 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 return XFS_ERROR(EIO);
2895 }
2896
2897 /* If the head iclog is not active nor dirty, we just attach
2898 * ourselves to the head and go to sleep.
2899 */
2900 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2901 iclog->ic_state == XLOG_STATE_DIRTY) {
2902 /*
2903 * If the head is dirty or (active and empty), then
2904 * we need to look at the previous iclog. If the previous
2905 * iclog is active or dirty we are done. There is nothing
2906 * to sync out. Otherwise, we attach ourselves to the
2907 * previous iclog and go to sleep.
2908 */
2909 if (iclog->ic_state == XLOG_STATE_DIRTY ||
David Chinner155cc6b2008-03-06 13:44:14 +11002910 (atomic_read(&iclog->ic_refcnt) == 0
2911 && iclog->ic_offset == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 iclog = iclog->ic_prev;
2913 if (iclog->ic_state == XLOG_STATE_ACTIVE ||
2914 iclog->ic_state == XLOG_STATE_DIRTY)
2915 goto no_sleep;
2916 else
2917 goto maybe_sleep;
2918 } else {
David Chinner155cc6b2008-03-06 13:44:14 +11002919 if (atomic_read(&iclog->ic_refcnt) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 /* We are the only one with access to this
2921 * iclog. Flush it out now. There should
2922 * be a roundoff of zero to show that someone
2923 * has already taken care of the roundoff from
2924 * the previous sync.
2925 */
David Chinner155cc6b2008-03-06 13:44:14 +11002926 atomic_inc(&iclog->ic_refcnt);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002927 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002929 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
2931 if (xlog_state_release_iclog(log, iclog))
2932 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002933
2934 if (log_flushed)
2935 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002936 spin_lock(&log->l_icloglock);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10002937 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 iclog->ic_state != XLOG_STATE_DIRTY)
2939 goto maybe_sleep;
2940 else
2941 goto no_sleep;
2942 } else {
2943 /* Someone else is writing to this iclog.
2944 * Use its call to flush out the data. However,
2945 * the other thread may not force out this LR,
2946 * so we mark it WANT_SYNC.
2947 */
2948 xlog_state_switch_iclogs(log, iclog, 0);
2949 goto maybe_sleep;
2950 }
2951 }
2952 }
2953
2954 /* By the time we come around again, the iclog could've been filled
2955 * which would give it another lsn. If we have a new lsn, just
2956 * return because the relevant data has been flushed.
2957 */
2958maybe_sleep:
2959 if (flags & XFS_LOG_SYNC) {
2960 /*
2961 * We must check if we're shutting down here, before
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002962 * we wait, while we're holding the l_icloglock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 * Then we check again after waking up, in case our
2964 * sleep was disturbed by a bad news.
2965 */
2966 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002967 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 return XFS_ERROR(EIO);
2969 }
2970 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11002971 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 /*
2973 * No need to grab the log lock here since we're
2974 * only deciding whether or not to return EIO
2975 * and the memory read should be atomic.
2976 */
2977 if (iclog->ic_state & XLOG_STATE_IOERROR)
2978 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002979 if (log_flushed)
2980 *log_flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 } else {
2982
2983no_sleep:
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10002984 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989/*
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002990 * Wrapper for _xfs_log_force(), to be used when caller doesn't care
2991 * about errors or whether the log was flushed or not. This is the normal
2992 * interface to use when trying to unpin items or move the log forward.
2993 */
2994void
2995xfs_log_force(
2996 xfs_mount_t *mp,
2997 uint flags)
2998{
2999 int error;
3000
3001 error = _xfs_log_force(mp, flags, NULL);
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003002 if (error)
3003 xfs_warn(mp, "%s: error %d returned.", __func__, error);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003004}
3005
3006/*
3007 * Force the in-core log to disk for a specific LSN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 *
3009 * Find in-core log with lsn.
3010 * If it is in the DIRTY state, just return.
3011 * If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3012 * state and go to sleep or return.
3013 * If it is in any other state, go to sleep or return.
3014 *
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003015 * Synchronous forces are implemented with a signal variable. All callers
3016 * to force a given lsn to disk will wait on a the sv attached to the
3017 * specific in-core log. When given in-core log finally completes its
3018 * write to disk, that thread will wake up all threads waiting on the
3019 * sv.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003021int
3022_xfs_log_force_lsn(
3023 struct xfs_mount *mp,
3024 xfs_lsn_t lsn,
3025 uint flags,
3026 int *log_flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003028 struct log *log = mp->m_log;
3029 struct xlog_in_core *iclog;
3030 int already_slept = 0;
3031
3032 ASSERT(lsn != 0);
3033
3034 XFS_STATS_INC(xs_log_force);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Christoph Hellwig93b8a582011-12-06 21:58:07 +00003036 lsn = xlog_cil_force_lsn(log, lsn);
3037 if (lsn == NULLCOMMITLSN)
3038 return 0;
Dave Chinner71e330b2010-05-21 14:37:18 +10003039
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040try_again:
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003041 spin_lock(&log->l_icloglock);
3042 iclog = log->l_iclog;
3043 if (iclog->ic_state & XLOG_STATE_IOERROR) {
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003044 spin_unlock(&log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003045 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
3047
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003048 do {
3049 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3050 iclog = iclog->ic_next;
3051 continue;
3052 }
3053
3054 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3055 spin_unlock(&log->l_icloglock);
3056 return 0;
3057 }
3058
3059 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3060 /*
3061 * We sleep here if we haven't already slept (e.g.
3062 * this is the first time we've looked at the correct
3063 * iclog buf) and the buffer before us is going to
3064 * be sync'ed. The reason for this is that if we
3065 * are doing sync transactions here, by waiting for
3066 * the previous I/O to complete, we can allow a few
3067 * more transactions into this iclog before we close
3068 * it down.
3069 *
3070 * Otherwise, we mark the buffer WANT_SYNC, and bump
3071 * up the refcnt so we can release the log (which
3072 * drops the ref count). The state switch keeps new
3073 * transaction commits from using this buffer. When
3074 * the current commits finish writing into the buffer,
3075 * the refcount will drop to zero and the buffer will
3076 * go out then.
3077 */
3078 if (!already_slept &&
3079 (iclog->ic_prev->ic_state &
3080 (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3081 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3082
3083 XFS_STATS_INC(xs_log_force_sleep);
3084
Dave Chinnereb40a872010-12-21 12:09:01 +11003085 xlog_wait(&iclog->ic_prev->ic_write_wait,
3086 &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003087 if (log_flushed)
3088 *log_flushed = 1;
3089 already_slept = 1;
3090 goto try_again;
3091 }
David Chinner155cc6b2008-03-06 13:44:14 +11003092 atomic_inc(&iclog->ic_refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 xlog_state_switch_iclogs(log, iclog, 0);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003094 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 if (xlog_state_release_iclog(log, iclog))
3096 return XFS_ERROR(EIO);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003097 if (log_flushed)
3098 *log_flushed = 1;
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003099 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003102 if ((flags & XFS_LOG_SYNC) && /* sleep */
3103 !(iclog->ic_state &
3104 (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3105 /*
3106 * Don't wait on completion if we know that we've
3107 * gotten a log write error.
3108 */
3109 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3110 spin_unlock(&log->l_icloglock);
3111 return XFS_ERROR(EIO);
3112 }
3113 XFS_STATS_INC(xs_log_force_sleep);
Dave Chinnereb40a872010-12-21 12:09:01 +11003114 xlog_wait(&iclog->ic_force_wait, &log->l_icloglock);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003115 /*
3116 * No need to grab the log lock here since we're
3117 * only deciding whether or not to return EIO
3118 * and the memory read should be atomic.
3119 */
3120 if (iclog->ic_state & XLOG_STATE_IOERROR)
3121 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003123 if (log_flushed)
3124 *log_flushed = 1;
3125 } else { /* just return */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003126 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003128
3129 return 0;
3130 } while (iclog != log->l_iclog);
3131
3132 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 return 0;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003136/*
3137 * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3138 * about errors or whether the log was flushed or not. This is the normal
3139 * interface to use when trying to unpin items or move the log forward.
3140 */
3141void
3142xfs_log_force_lsn(
3143 xfs_mount_t *mp,
3144 xfs_lsn_t lsn,
3145 uint flags)
3146{
3147 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003149 error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003150 if (error)
3151 xfs_warn(mp, "%s: error %d returned.", __func__, error);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003152}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154/*
3155 * Called when we want to mark the current iclog as being ready to sync to
3156 * disk.
3157 */
David Chinnera8272ce2007-11-23 16:28:09 +11003158STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3160{
Christoph Hellwiga8914f32009-08-10 11:32:44 -03003161 assert_spin_locked(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3164 xlog_state_switch_iclogs(log, iclog, 0);
3165 } else {
3166 ASSERT(iclog->ic_state &
3167 (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3168 }
Christoph Hellwig39e2def2008-12-03 12:20:28 +01003169}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
3171
3172/*****************************************************************************
3173 *
3174 * TICKET functions
3175 *
3176 *****************************************************************************
3177 */
3178
3179/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003180 * Free a used ticket when its refcount falls to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 */
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003182void
3183xfs_log_ticket_put(
3184 xlog_ticket_t *ticket)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185{
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003186 ASSERT(atomic_read(&ticket->t_ref) > 0);
Dave Chinnereb40a872010-12-21 12:09:01 +11003187 if (atomic_dec_and_test(&ticket->t_ref))
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003188 kmem_zone_free(xfs_log_ticket_zone, ticket);
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003189}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003191xlog_ticket_t *
3192xfs_log_ticket_get(
3193 xlog_ticket_t *ticket)
3194{
3195 ASSERT(atomic_read(&ticket->t_ref) > 0);
3196 atomic_inc(&ticket->t_ref);
3197 return ticket;
3198}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
3200/*
David Chinnereb01c9c2008-04-10 12:18:46 +10003201 * Allocate and initialise a new log ticket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 */
Dave Chinner71e330b2010-05-21 14:37:18 +10003203xlog_ticket_t *
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003204xlog_ticket_alloc(
3205 struct log *log,
3206 int unit_bytes,
3207 int cnt,
3208 char client,
Dave Chinner3383ca52010-05-07 11:04:17 +10003209 uint xflags,
3210 int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211{
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003212 struct xlog_ticket *tic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 uint num_headers;
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003214 int iclog_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Dave Chinner3383ca52010-05-07 11:04:17 +10003216 tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
David Chinnereb01c9c2008-04-10 12:18:46 +10003217 if (!tic)
3218 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 /*
3221 * Permanent reservations have up to 'cnt'-1 active log operations
3222 * in the log. A unit in this case is the amount of space for one
3223 * of these log operations. Normal reservations have a cnt of 1
3224 * and their unit amount is the total amount of space required.
3225 *
3226 * The following lines of code account for non-transaction data
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003227 * which occupy space in the on-disk log.
3228 *
3229 * Normal form of a transaction is:
3230 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3231 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3232 *
3233 * We need to account for all the leadup data and trailer data
3234 * around the transaction data.
3235 * And then we need to account for the worst case in terms of using
3236 * more space.
3237 * The worst case will happen if:
3238 * - the placement of the transaction happens to be such that the
3239 * roundoff is at its maximum
3240 * - the transaction data is synced before the commit record is synced
3241 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3242 * Therefore the commit record is in its own Log Record.
3243 * This can happen as the commit record is called with its
3244 * own region to xlog_write().
3245 * This then means that in the worst case, roundoff can happen for
3246 * the commit-rec as well.
3247 * The commit-rec is smaller than padding in this scenario and so it is
3248 * not added separately.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 */
3250
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003251 /* for trans header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 unit_bytes += sizeof(xlog_op_header_t);
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003253 unit_bytes += sizeof(xfs_trans_header_t);
3254
3255 /* for start-rec */
3256 unit_bytes += sizeof(xlog_op_header_t);
3257
Dave Chinner9b9fc2b72010-03-23 11:21:11 +11003258 /*
3259 * for LR headers - the space for data in an iclog is the size minus
3260 * the space used for the headers. If we use the iclog size, then we
3261 * undercalculate the number of headers required.
3262 *
3263 * Furthermore - the addition of op headers for split-recs might
3264 * increase the space required enough to require more log and op
3265 * headers, so take that into account too.
3266 *
3267 * IMPORTANT: This reservation makes the assumption that if this
3268 * transaction is the first in an iclog and hence has the LR headers
3269 * accounted to it, then the remaining space in the iclog is
3270 * exclusively for this transaction. i.e. if the transaction is larger
3271 * than the iclog, it will be the only thing in that iclog.
3272 * Fundamentally, this means we must pass the entire log vector to
3273 * xlog_write to guarantee this.
3274 */
3275 iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3276 num_headers = howmany(unit_bytes, iclog_space);
3277
3278 /* for split-recs - ophdrs added when data split over LRs */
3279 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3280
3281 /* add extra header reservations if we overrun */
3282 while (!num_headers ||
3283 howmany(unit_bytes, iclog_space) > num_headers) {
3284 unit_bytes += sizeof(xlog_op_header_t);
3285 num_headers++;
3286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 unit_bytes += log->l_iclog_hsize * num_headers;
3288
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003289 /* for commit-rec LR header - note: padding will subsume the ophdr */
3290 unit_bytes += log->l_iclog_hsize;
3291
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003292 /* for roundoff padding for transaction data and one for commit record */
Eric Sandeen62118702008-03-06 13:44:28 +11003293 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
Tim Shimmin32fb9b52005-09-02 16:41:43 +10003294 log->l_mp->m_sb.sb_logsunit > 1) {
3295 /* log su roundoff */
3296 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3297 } else {
3298 /* BB roundoff */
3299 unit_bytes += 2*BBSIZE;
3300 }
3301
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003302 atomic_set(&tic->t_ref, 1);
Christoph Hellwig14a7235f2012-02-20 02:31:24 +00003303 tic->t_task = current;
Dave Chinner10547942010-12-21 12:02:25 +11003304 INIT_LIST_HEAD(&tic->t_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 tic->t_unit_res = unit_bytes;
3306 tic->t_curr_res = unit_bytes;
3307 tic->t_cnt = cnt;
3308 tic->t_ocnt = cnt;
Dave Chinnerf9837102010-04-14 15:47:55 +10003309 tic->t_tid = random32();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 tic->t_clientid = client;
3311 tic->t_flags = XLOG_TIC_INITED;
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003312 tic->t_trans_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (xflags & XFS_LOG_PERM_RESERV)
3314 tic->t_flags |= XLOG_TIC_PERM_RESERV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Christoph Hellwig0adba532007-08-30 17:21:46 +10003316 xlog_tic_reset_res(tic);
Tim Shimmin7e9c6392005-09-02 16:42:05 +10003317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return tic;
Dave Chinnercc09c0d2008-11-17 17:37:10 +11003319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321
3322/******************************************************************************
3323 *
3324 * Log debug routines
3325 *
3326 ******************************************************************************
3327 */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003328#if defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329/*
3330 * Make sure that the destination ptr is within the valid data region of
3331 * one of the iclogs. This uses backup pointers stored in a different
3332 * part of the log in case we trash the log structure.
3333 */
3334void
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003335xlog_verify_dest_ptr(
3336 struct log *log,
3337 char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
3339 int i;
3340 int good_ptr = 0;
3341
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003342 for (i = 0; i < log->l_iclog_bufs; i++) {
3343 if (ptr >= log->l_iclog_bak[i] &&
3344 ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 good_ptr++;
3346 }
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003347
3348 if (!good_ptr)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003349 xfs_emerg(log->l_mp, "%s: invalid ptr", __func__);
Christoph Hellwige6b1f272010-03-23 11:47:38 +11003350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Dave Chinnerda8a1a42011-04-08 12:45:07 +10003352/*
3353 * Check to make sure the grant write head didn't just over lap the tail. If
3354 * the cycles are the same, we can't be overlapping. Otherwise, make sure that
3355 * the cycles differ by exactly one and check the byte count.
3356 *
3357 * This check is run unlocked, so can give false positives. Rather than assert
3358 * on failures, use a warn-once flag and a panic tag to allow the admin to
3359 * determine if they want to panic the machine when such an error occurs. For
3360 * debug kernels this will have the same effect as using an assert but, unlinke
3361 * an assert, it can be turned off at runtime.
3362 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363STATIC void
Dave Chinner3f336c62010-12-21 12:02:52 +11003364xlog_verify_grant_tail(
3365 struct log *log)
3366{
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003367 int tail_cycle, tail_blocks;
Dave Chinnera69ed032010-12-21 12:08:20 +11003368 int cycle, space;
Dave Chinner3f336c62010-12-21 12:02:52 +11003369
Christoph Hellwig28496962012-02-20 02:31:25 +00003370 xlog_crack_grant_head(&log->l_write_head.grant, &cycle, &space);
Dave Chinner1c3cb9e2010-12-21 12:28:39 +11003371 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_blocks);
3372 if (tail_cycle != cycle) {
Dave Chinnerda8a1a42011-04-08 12:45:07 +10003373 if (cycle - 1 != tail_cycle &&
3374 !(log->l_flags & XLOG_TAIL_WARN)) {
3375 xfs_alert_tag(log->l_mp, XFS_PTAG_LOGRES,
3376 "%s: cycle - 1 != tail_cycle", __func__);
3377 log->l_flags |= XLOG_TAIL_WARN;
3378 }
3379
3380 if (space > BBTOB(tail_blocks) &&
3381 !(log->l_flags & XLOG_TAIL_WARN)) {
3382 xfs_alert_tag(log->l_mp, XFS_PTAG_LOGRES,
3383 "%s: space > BBTOB(tail_blocks)", __func__);
3384 log->l_flags |= XLOG_TAIL_WARN;
3385 }
Dave Chinner3f336c62010-12-21 12:02:52 +11003386 }
3387}
3388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389/* check if it will fit */
3390STATIC void
3391xlog_verify_tail_lsn(xlog_t *log,
3392 xlog_in_core_t *iclog,
3393 xfs_lsn_t tail_lsn)
3394{
3395 int blocks;
3396
3397 if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3398 blocks =
3399 log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3400 if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003401 xfs_emerg(log->l_mp, "%s: ran out of log space", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 } else {
3403 ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3404
3405 if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003406 xfs_emerg(log->l_mp, "%s: tail wrapped", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
3408 blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3409 if (blocks < BTOBB(iclog->ic_offset) + 1)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003410 xfs_emerg(log->l_mp, "%s: ran out of log space", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 }
3412} /* xlog_verify_tail_lsn */
3413
3414/*
3415 * Perform a number of checks on the iclog before writing to disk.
3416 *
3417 * 1. Make sure the iclogs are still circular
3418 * 2. Make sure we have a good magic number
3419 * 3. Make sure we don't have magic numbers in the data
3420 * 4. Check fields of each log operation header for:
3421 * A. Valid client identifier
3422 * B. tid ptr value falls in valid ptr space (user space code)
3423 * C. Length in log record header is correct according to the
3424 * individual operation headers within record.
3425 * 5. When a bwrite will occur within 5 blocks of the front of the physical
3426 * log, check the preceding blocks of the physical log to make sure all
3427 * the cycle numbers agree with the current cycle number.
3428 */
3429STATIC void
3430xlog_verify_iclog(xlog_t *log,
3431 xlog_in_core_t *iclog,
3432 int count,
3433 boolean_t syncing)
3434{
3435 xlog_op_header_t *ophead;
3436 xlog_in_core_t *icptr;
3437 xlog_in_core_2_t *xhdr;
3438 xfs_caddr_t ptr;
3439 xfs_caddr_t base_ptr;
3440 __psint_t field_offset;
3441 __uint8_t clientid;
3442 int len, i, j, k, op_len;
3443 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445 /* check validity of iclog pointers */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003446 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 icptr = log->l_iclog;
3448 for (i=0; i < log->l_iclog_bufs; i++) {
Christoph Hellwig4b809162007-08-16 15:37:36 +10003449 if (icptr == NULL)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003450 xfs_emerg(log->l_mp, "%s: invalid ptr", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 icptr = icptr->ic_next;
3452 }
3453 if (icptr != log->l_iclog)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003454 xfs_emerg(log->l_mp, "%s: corrupt iclog ring", __func__);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003455 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 /* check log magic numbers */
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003458 if (iclog->ic_header.h_magicno != cpu_to_be32(XLOG_HEADER_MAGIC_NUM))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003459 xfs_emerg(log->l_mp, "%s: invalid magic num", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003461 ptr = (xfs_caddr_t) &iclog->ic_header;
3462 for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 ptr += BBSIZE) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003464 if (*(__be32 *)ptr == cpu_to_be32(XLOG_HEADER_MAGIC_NUM))
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003465 xfs_emerg(log->l_mp, "%s: unexpected magic num",
3466 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 }
3468
3469 /* check fields */
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003470 len = be32_to_cpu(iclog->ic_header.h_num_logops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 ptr = iclog->ic_datap;
3472 base_ptr = ptr;
3473 ophead = (xlog_op_header_t *)ptr;
Christoph Hellwigb28708d2008-11-28 14:23:38 +11003474 xhdr = iclog->ic_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 for (i = 0; i < len; i++) {
3476 ophead = (xlog_op_header_t *)ptr;
3477
3478 /* clientid is only 1 byte */
3479 field_offset = (__psint_t)
3480 ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3481 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3482 clientid = ophead->oh_clientid;
3483 } else {
3484 idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3485 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3486 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3487 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003488 clientid = xlog_get_client_id(
3489 xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 } else {
Christoph Hellwig03bea6f2007-10-12 10:58:05 +10003491 clientid = xlog_get_client_id(
3492 iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 }
3494 }
3495 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
Dave Chinnera0fa2b62011-03-07 10:01:35 +11003496 xfs_warn(log->l_mp,
3497 "%s: invalid clientid %d op 0x%p offset 0x%lx",
3498 __func__, clientid, ophead,
3499 (unsigned long)field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 /* check length */
3502 field_offset = (__psint_t)
3503 ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3504 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
Christoph Hellwig67fcb7b2007-10-12 10:58:59 +10003505 op_len = be32_to_cpu(ophead->oh_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 } else {
3507 idx = BTOBBT((__psint_t)&ophead->oh_len -
3508 (__psint_t)iclog->ic_datap);
3509 if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3510 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3511 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003512 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 } else {
Christoph Hellwigb53e6752007-10-12 10:59:34 +10003514 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
3516 }
3517 ptr += sizeof(xlog_op_header_t) + op_len;
3518 }
3519} /* xlog_verify_iclog */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11003520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
3522/*
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003523 * Mark all iclogs IOERROR. l_icloglock is held by the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 */
3525STATIC int
3526xlog_state_ioerror(
3527 xlog_t *log)
3528{
3529 xlog_in_core_t *iclog, *ic;
3530
3531 iclog = log->l_iclog;
3532 if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3533 /*
3534 * Mark all the incore logs IOERROR.
3535 * From now on, no log flushes will result.
3536 */
3537 ic = iclog;
3538 do {
3539 ic->ic_state = XLOG_STATE_IOERROR;
3540 ic = ic->ic_next;
3541 } while (ic != iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 }
3544 /*
3545 * Return non-zero, if state transition has already happened.
3546 */
Jesper Juhl014c2542006-01-15 02:37:08 +01003547 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548}
3549
3550/*
3551 * This is called from xfs_force_shutdown, when we're forcibly
3552 * shutting down the filesystem, typically because of an IO error.
3553 * Our main objectives here are to make sure that:
3554 * a. the filesystem gets marked 'SHUTDOWN' for all interested
3555 * parties to find out, 'atomically'.
3556 * b. those who're sleeping on log reservations, pinned objects and
3557 * other resources get woken up, and be told the bad news.
3558 * c. nothing new gets queued up after (a) and (b) are done.
3559 * d. if !logerror, flush the iclogs to disk, then seal them off
3560 * for business.
Dave Chinner9da1ab12010-05-17 15:51:59 +10003561 *
3562 * Note: for delayed logging the !logerror case needs to flush the regions
3563 * held in memory out to the iclogs before flushing them to disk. This needs
3564 * to be done before the log is marked as shutdown, otherwise the flush to the
3565 * iclogs will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 */
3567int
3568xfs_log_force_umount(
3569 struct xfs_mount *mp,
3570 int logerror)
3571{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 xlog_t *log;
3573 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
3575 log = mp->m_log;
3576
3577 /*
3578 * If this happens during log recovery, don't worry about
3579 * locking; the log isn't open for business yet.
3580 */
3581 if (!log ||
3582 log->l_flags & XLOG_ACTIVE_RECOVERY) {
3583 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003584 if (mp->m_sb_bp)
3585 XFS_BUF_DONE(mp->m_sb_bp);
Jesper Juhl014c2542006-01-15 02:37:08 +01003586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 }
3588
3589 /*
3590 * Somebody could've already done the hard work for us.
3591 * No need to get locks for this.
3592 */
3593 if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3594 ASSERT(XLOG_FORCED_SHUTDOWN(log));
Jesper Juhl014c2542006-01-15 02:37:08 +01003595 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 }
3597 retval = 0;
Dave Chinner9da1ab12010-05-17 15:51:59 +10003598
3599 /*
3600 * Flush the in memory commit item list before marking the log as
3601 * being shut down. We need to do it in this order to ensure all the
3602 * completed transactions are flushed to disk with the xfs_log_force()
3603 * call below.
3604 */
Christoph Hellwig93b8a582011-12-06 21:58:07 +00003605 if (!logerror)
Dave Chinnera44f13e2010-08-24 11:40:03 +10003606 xlog_cil_force(log);
Dave Chinner9da1ab12010-05-17 15:51:59 +10003607
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 /*
Dave Chinner3f16b982010-12-21 12:29:01 +11003609 * mark the filesystem and the as in a shutdown state and wake
3610 * everybody up to tell them the bad news.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 */
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003612 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
Christoph Hellwigbac8dca2008-11-28 14:23:31 +11003614 if (mp->m_sb_bp)
3615 XFS_BUF_DONE(mp->m_sb_bp);
3616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 /*
3618 * This flag is sort of redundant because of the mount flag, but
3619 * it's good to maintain the separation between the log and the rest
3620 * of XFS.
3621 */
3622 log->l_flags |= XLOG_IO_ERROR;
3623
3624 /*
3625 * If we hit a log error, we want to mark all the iclogs IOERROR
3626 * while we're still holding the loglock.
3627 */
3628 if (logerror)
3629 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003630 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
3632 /*
Dave Chinner10547942010-12-21 12:02:25 +11003633 * We don't want anybody waiting for log reservations after this. That
3634 * means we have to wake up everybody queued up on reserveq as well as
3635 * writeq. In addition, we make sure in xlog_{re}grant_log_space that
3636 * we don't enqueue anything once the SHUTDOWN flag is set, and this
Dave Chinner3f16b982010-12-21 12:29:01 +11003637 * action is protected by the grant locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 */
Christoph Hellwiga79bf2d2012-02-20 02:31:27 +00003639 xlog_grant_head_wake_all(&log->l_reserve_head);
3640 xlog_grant_head_wake_all(&log->l_write_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003642 if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 ASSERT(!logerror);
3644 /*
3645 * Force the incore logs to disk before shutting the
3646 * log down completely.
3647 */
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003648 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3649
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003650 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 retval = xlog_state_ioerror(log);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003652 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 }
3654 /*
3655 * Wake up everybody waiting on xfs_log_force.
3656 * Callback all log item committed functions as if the
3657 * log writes were completed.
3658 */
3659 xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3660
3661#ifdef XFSERRORDEBUG
3662 {
3663 xlog_in_core_t *iclog;
3664
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003665 spin_lock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 iclog = log->l_iclog;
3667 do {
3668 ASSERT(iclog->ic_callback == 0);
3669 iclog = iclog->ic_next;
3670 } while (iclog != log->l_iclog);
Eric Sandeenb22cd72c2007-10-11 17:37:10 +10003671 spin_unlock(&log->l_icloglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 }
3673#endif
3674 /* return non-zero if log IOERROR transition had already happened */
Jesper Juhl014c2542006-01-15 02:37:08 +01003675 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676}
3677
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003678STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679xlog_iclogs_empty(xlog_t *log)
3680{
3681 xlog_in_core_t *iclog;
3682
3683 iclog = log->l_iclog;
3684 do {
3685 /* endianness does not matter here, zero is zero in
3686 * any language.
3687 */
3688 if (iclog->ic_header.h_num_logops)
Jesper Juhl014c2542006-01-15 02:37:08 +01003689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 iclog = iclog->ic_next;
3691 } while (iclog != log->l_iclog);
Jesper Juhl014c2542006-01-15 02:37:08 +01003692 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693}