xfs: clean up log ticket overrun debug output
[safe/jmp/linux-2.6] / fs / xfs / xfs_log.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * 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.
13  *
14  * 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
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir2.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_error.h"
31 #include "xfs_log_priv.h"
32 #include "xfs_buf_item.h"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_log_recover.h"
37 #include "xfs_trans_priv.h"
38 #include "xfs_dir2_sf.h"
39 #include "xfs_attr_sf.h"
40 #include "xfs_dinode.h"
41 #include "xfs_inode.h"
42 #include "xfs_rw.h"
43 #include "xfs_trace.h"
44
45 kmem_zone_t     *xfs_log_ticket_zone;
46
47 /* Local miscellaneous function prototypes */
48 STATIC int       xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
49                                     xlog_in_core_t **, xfs_lsn_t *);
50 STATIC xlog_t *  xlog_alloc_log(xfs_mount_t     *mp,
51                                 xfs_buftarg_t   *log_target,
52                                 xfs_daddr_t     blk_offset,
53                                 int             num_bblks);
54 STATIC int       xlog_space_left(xlog_t *log, int cycle, int bytes);
55 STATIC int       xlog_sync(xlog_t *log, xlog_in_core_t *iclog);
56 STATIC void      xlog_dealloc_log(xlog_t *log);
57 STATIC int       xlog_write(struct log *log, struct xfs_log_vec *log_vector,
58                             struct xlog_ticket *tic, xfs_lsn_t *start_lsn,
59                             xlog_in_core_t **commit_iclog, uint flags);
60
61 /* local state machine functions */
62 STATIC void xlog_state_done_syncing(xlog_in_core_t *iclog, int);
63 STATIC void xlog_state_do_callback(xlog_t *log,int aborted, xlog_in_core_t *iclog);
64 STATIC int  xlog_state_get_iclog_space(xlog_t           *log,
65                                        int              len,
66                                        xlog_in_core_t   **iclog,
67                                        xlog_ticket_t    *ticket,
68                                        int              *continued_write,
69                                        int              *logoffsetp);
70 STATIC int  xlog_state_release_iclog(xlog_t             *log,
71                                      xlog_in_core_t     *iclog);
72 STATIC void xlog_state_switch_iclogs(xlog_t             *log,
73                                      xlog_in_core_t *iclog,
74                                      int                eventual_size);
75 STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog);
76
77 /* local functions to manipulate grant head */
78 STATIC int  xlog_grant_log_space(xlog_t         *log,
79                                  xlog_ticket_t  *xtic);
80 STATIC void xlog_grant_push_ail(xfs_mount_t     *mp,
81                                 int             need_bytes);
82 STATIC void xlog_regrant_reserve_log_space(xlog_t        *log,
83                                            xlog_ticket_t *ticket);
84 STATIC int xlog_regrant_write_log_space(xlog_t          *log,
85                                          xlog_ticket_t  *ticket);
86 STATIC void xlog_ungrant_log_space(xlog_t        *log,
87                                    xlog_ticket_t *ticket);
88
89
90 /* local ticket functions */
91 STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log, int unit_bytes, int count,
92                                         char clientid, uint flags,
93                                         int alloc_flags);
94
95 #if defined(DEBUG)
96 STATIC void     xlog_verify_dest_ptr(xlog_t *log, char *ptr);
97 STATIC void     xlog_verify_grant_head(xlog_t *log, int equals);
98 STATIC void     xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
99                                   int count, boolean_t syncing);
100 STATIC void     xlog_verify_tail_lsn(xlog_t *log, xlog_in_core_t *iclog,
101                                      xfs_lsn_t tail_lsn);
102 #else
103 #define xlog_verify_dest_ptr(a,b)
104 #define xlog_verify_grant_head(a,b)
105 #define xlog_verify_iclog(a,b,c,d)
106 #define xlog_verify_tail_lsn(a,b,c)
107 #endif
108
109 STATIC int      xlog_iclogs_empty(xlog_t *log);
110
111
112 static void
113 xlog_ins_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
114 {
115         if (*qp) {
116                 tic->t_next         = (*qp);
117                 tic->t_prev         = (*qp)->t_prev;
118                 (*qp)->t_prev->t_next = tic;
119                 (*qp)->t_prev       = tic;
120         } else {
121                 tic->t_prev = tic->t_next = tic;
122                 *qp = tic;
123         }
124
125         tic->t_flags |= XLOG_TIC_IN_Q;
126 }
127
128 static void
129 xlog_del_ticketq(struct xlog_ticket **qp, struct xlog_ticket *tic)
130 {
131         if (tic == tic->t_next) {
132                 *qp = NULL;
133         } else {
134                 *qp = tic->t_next;
135                 tic->t_next->t_prev = tic->t_prev;
136                 tic->t_prev->t_next = tic->t_next;
137         }
138
139         tic->t_next = tic->t_prev = NULL;
140         tic->t_flags &= ~XLOG_TIC_IN_Q;
141 }
142
143 static void
144 xlog_grant_sub_space(struct log *log, int bytes)
145 {
146         log->l_grant_write_bytes -= bytes;
147         if (log->l_grant_write_bytes < 0) {
148                 log->l_grant_write_bytes += log->l_logsize;
149                 log->l_grant_write_cycle--;
150         }
151
152         log->l_grant_reserve_bytes -= bytes;
153         if ((log)->l_grant_reserve_bytes < 0) {
154                 log->l_grant_reserve_bytes += log->l_logsize;
155                 log->l_grant_reserve_cycle--;
156         }
157
158 }
159
160 static void
161 xlog_grant_add_space_write(struct log *log, int bytes)
162 {
163         int tmp = log->l_logsize - log->l_grant_write_bytes;
164         if (tmp > bytes)
165                 log->l_grant_write_bytes += bytes;
166         else {
167                 log->l_grant_write_cycle++;
168                 log->l_grant_write_bytes = bytes - tmp;
169         }
170 }
171
172 static void
173 xlog_grant_add_space_reserve(struct log *log, int bytes)
174 {
175         int tmp = log->l_logsize - log->l_grant_reserve_bytes;
176         if (tmp > bytes)
177                 log->l_grant_reserve_bytes += bytes;
178         else {
179                 log->l_grant_reserve_cycle++;
180                 log->l_grant_reserve_bytes = bytes - tmp;
181         }
182 }
183
184 static inline void
185 xlog_grant_add_space(struct log *log, int bytes)
186 {
187         xlog_grant_add_space_write(log, bytes);
188         xlog_grant_add_space_reserve(log, bytes);
189 }
190
191 static void
192 xlog_tic_reset_res(xlog_ticket_t *tic)
193 {
194         tic->t_res_num = 0;
195         tic->t_res_arr_sum = 0;
196         tic->t_res_num_ophdrs = 0;
197 }
198
199 static void
200 xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type)
201 {
202         if (tic->t_res_num == XLOG_TIC_LEN_MAX) {
203                 /* add to overflow and start again */
204                 tic->t_res_o_flow += tic->t_res_arr_sum;
205                 tic->t_res_num = 0;
206                 tic->t_res_arr_sum = 0;
207         }
208
209         tic->t_res_arr[tic->t_res_num].r_len = len;
210         tic->t_res_arr[tic->t_res_num].r_type = type;
211         tic->t_res_arr_sum += len;
212         tic->t_res_num++;
213 }
214
215 /*
216  * NOTES:
217  *
218  *      1. currblock field gets updated at startup and after in-core logs
219  *              marked as with WANT_SYNC.
220  */
221
222 /*
223  * This routine is called when a user of a log manager ticket is done with
224  * the reservation.  If the ticket was ever used, then a commit record for
225  * the associated transaction is written out as a log operation header with
226  * no data.  The flag XLOG_TIC_INITED is set when the first write occurs with
227  * a given ticket.  If the ticket was one with a permanent reservation, then
228  * a few operations are done differently.  Permanent reservation tickets by
229  * default don't release the reservation.  They just commit the current
230  * transaction with the belief that the reservation is still needed.  A flag
231  * must be passed in before permanent reservations are actually released.
232  * When these type of tickets are not released, they need to be set into
233  * the inited state again.  By doing this, a start record will be written
234  * out when the next write occurs.
235  */
236 xfs_lsn_t
237 xfs_log_done(
238         struct xfs_mount        *mp,
239         struct xlog_ticket      *ticket,
240         struct xlog_in_core     **iclog,
241         uint                    flags)
242 {
243         struct log              *log = mp->m_log;
244         xfs_lsn_t               lsn = 0;
245
246         if (XLOG_FORCED_SHUTDOWN(log) ||
247             /*
248              * If nothing was ever written, don't write out commit record.
249              * If we get an error, just continue and give back the log ticket.
250              */
251             (((ticket->t_flags & XLOG_TIC_INITED) == 0) &&
252              (xlog_commit_record(log, ticket, iclog, &lsn)))) {
253                 lsn = (xfs_lsn_t) -1;
254                 if (ticket->t_flags & XLOG_TIC_PERM_RESERV) {
255                         flags |= XFS_LOG_REL_PERM_RESERV;
256                 }
257         }
258
259
260         if ((ticket->t_flags & XLOG_TIC_PERM_RESERV) == 0 ||
261             (flags & XFS_LOG_REL_PERM_RESERV)) {
262                 trace_xfs_log_done_nonperm(log, ticket);
263
264                 /*
265                  * Release ticket if not permanent reservation or a specific
266                  * request has been made to release a permanent reservation.
267                  */
268                 xlog_ungrant_log_space(log, ticket);
269                 xfs_log_ticket_put(ticket);
270         } else {
271                 trace_xfs_log_done_perm(log, ticket);
272
273                 xlog_regrant_reserve_log_space(log, ticket);
274                 /* If this ticket was a permanent reservation and we aren't
275                  * trying to release it, reset the inited flags; so next time
276                  * we write, a start record will be written out.
277                  */
278                 ticket->t_flags |= XLOG_TIC_INITED;
279         }
280
281         return lsn;
282 }
283
284 /*
285  * Attaches a new iclog I/O completion callback routine during
286  * transaction commit.  If the log is in error state, a non-zero
287  * return code is handed back and the caller is responsible for
288  * executing the callback at an appropriate time.
289  */
290 int
291 xfs_log_notify(
292         struct xfs_mount        *mp,
293         struct xlog_in_core     *iclog,
294         xfs_log_callback_t      *cb)
295 {
296         int     abortflg;
297
298         spin_lock(&iclog->ic_callback_lock);
299         abortflg = (iclog->ic_state & XLOG_STATE_IOERROR);
300         if (!abortflg) {
301                 ASSERT_ALWAYS((iclog->ic_state == XLOG_STATE_ACTIVE) ||
302                               (iclog->ic_state == XLOG_STATE_WANT_SYNC));
303                 cb->cb_next = NULL;
304                 *(iclog->ic_callback_tail) = cb;
305                 iclog->ic_callback_tail = &(cb->cb_next);
306         }
307         spin_unlock(&iclog->ic_callback_lock);
308         return abortflg;
309 }
310
311 int
312 xfs_log_release_iclog(
313         struct xfs_mount        *mp,
314         struct xlog_in_core     *iclog)
315 {
316         if (xlog_state_release_iclog(mp->m_log, iclog)) {
317                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
318                 return EIO;
319         }
320
321         return 0;
322 }
323
324 /*
325  *  1. Reserve an amount of on-disk log space and return a ticket corresponding
326  *      to the reservation.
327  *  2. Potentially, push buffers at tail of log to disk.
328  *
329  * Each reservation is going to reserve extra space for a log record header.
330  * When writes happen to the on-disk log, we don't subtract the length of the
331  * log record header from any reservation.  By wasting space in each
332  * reservation, we prevent over allocation problems.
333  */
334 int
335 xfs_log_reserve(
336         struct xfs_mount        *mp,
337         int                     unit_bytes,
338         int                     cnt,
339         struct xlog_ticket      **ticket,
340         __uint8_t               client,
341         uint                    flags,
342         uint                    t_type)
343 {
344         struct log              *log = mp->m_log;
345         struct xlog_ticket      *internal_ticket;
346         int                     retval = 0;
347
348         ASSERT(client == XFS_TRANSACTION || client == XFS_LOG);
349         ASSERT((flags & XFS_LOG_NOSLEEP) == 0);
350
351         if (XLOG_FORCED_SHUTDOWN(log))
352                 return XFS_ERROR(EIO);
353
354         XFS_STATS_INC(xs_try_logspace);
355
356
357         if (*ticket != NULL) {
358                 ASSERT(flags & XFS_LOG_PERM_RESERV);
359                 internal_ticket = *ticket;
360
361                 /*
362                  * this is a new transaction on the ticket, so we need to
363                  * change the transaction ID so that the next transaction has a
364                  * different TID in the log. Just add one to the existing tid
365                  * so that we can see chains of rolling transactions in the log
366                  * easily.
367                  */
368                 internal_ticket->t_tid++;
369
370                 trace_xfs_log_reserve(log, internal_ticket);
371
372                 xlog_grant_push_ail(mp, internal_ticket->t_unit_res);
373                 retval = xlog_regrant_write_log_space(log, internal_ticket);
374         } else {
375                 /* may sleep if need to allocate more tickets */
376                 internal_ticket = xlog_ticket_alloc(log, unit_bytes, cnt,
377                                                   client, flags,
378                                                   KM_SLEEP|KM_MAYFAIL);
379                 if (!internal_ticket)
380                         return XFS_ERROR(ENOMEM);
381                 internal_ticket->t_trans_type = t_type;
382                 *ticket = internal_ticket;
383
384                 trace_xfs_log_reserve(log, internal_ticket);
385
386                 xlog_grant_push_ail(mp,
387                                     (internal_ticket->t_unit_res *
388                                      internal_ticket->t_cnt));
389                 retval = xlog_grant_log_space(log, internal_ticket);
390         }
391
392         return retval;
393 }       /* xfs_log_reserve */
394
395
396 /*
397  * Mount a log filesystem
398  *
399  * mp           - ubiquitous xfs mount point structure
400  * log_target   - buftarg of on-disk log device
401  * blk_offset   - Start block # where block size is 512 bytes (BBSIZE)
402  * num_bblocks  - Number of BBSIZE blocks in on-disk log
403  *
404  * Return error or zero.
405  */
406 int
407 xfs_log_mount(
408         xfs_mount_t     *mp,
409         xfs_buftarg_t   *log_target,
410         xfs_daddr_t     blk_offset,
411         int             num_bblks)
412 {
413         int             error;
414
415         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
416                 cmn_err(CE_NOTE, "XFS mounting filesystem %s", mp->m_fsname);
417         else {
418                 cmn_err(CE_NOTE,
419                         "!Mounting filesystem \"%s\" in no-recovery mode.  Filesystem will be inconsistent.",
420                         mp->m_fsname);
421                 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
422         }
423
424         mp->m_log = xlog_alloc_log(mp, log_target, blk_offset, num_bblks);
425         if (IS_ERR(mp->m_log)) {
426                 error = -PTR_ERR(mp->m_log);
427                 goto out;
428         }
429
430         /*
431          * Initialize the AIL now we have a log.
432          */
433         error = xfs_trans_ail_init(mp);
434         if (error) {
435                 cmn_err(CE_WARN, "XFS: AIL initialisation failed: error %d", error);
436                 goto out_free_log;
437         }
438         mp->m_log->l_ailp = mp->m_ail;
439
440         /*
441          * skip log recovery on a norecovery mount.  pretend it all
442          * just worked.
443          */
444         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) {
445                 int     readonly = (mp->m_flags & XFS_MOUNT_RDONLY);
446
447                 if (readonly)
448                         mp->m_flags &= ~XFS_MOUNT_RDONLY;
449
450                 error = xlog_recover(mp->m_log);
451
452                 if (readonly)
453                         mp->m_flags |= XFS_MOUNT_RDONLY;
454                 if (error) {
455                         cmn_err(CE_WARN, "XFS: log mount/recovery failed: error %d", error);
456                         goto out_destroy_ail;
457                 }
458         }
459
460         /* Normal transactions can now occur */
461         mp->m_log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
462
463         return 0;
464
465 out_destroy_ail:
466         xfs_trans_ail_destroy(mp);
467 out_free_log:
468         xlog_dealloc_log(mp->m_log);
469 out:
470         return error;
471 }
472
473 /*
474  * Finish the recovery of the file system.  This is separate from
475  * the xfs_log_mount() call, because it depends on the code in
476  * xfs_mountfs() to read in the root and real-time bitmap inodes
477  * between calling xfs_log_mount() and here.
478  *
479  * mp           - ubiquitous xfs mount point structure
480  */
481 int
482 xfs_log_mount_finish(xfs_mount_t *mp)
483 {
484         int     error;
485
486         if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
487                 error = xlog_recover_finish(mp->m_log);
488         else {
489                 error = 0;
490                 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);
491         }
492
493         return error;
494 }
495
496 /*
497  * Final log writes as part of unmount.
498  *
499  * Mark the filesystem clean as unmount happens.  Note that during relocation
500  * this routine needs to be executed as part of source-bag while the
501  * deallocation must not be done until source-end.
502  */
503
504 /*
505  * Unmount record used to have a string "Unmount filesystem--" in the
506  * data section where the "Un" was really a magic number (XLOG_UNMOUNT_TYPE).
507  * We just write the magic number now since that particular field isn't
508  * currently architecture converted and "nUmount" is a bit foo.
509  * As far as I know, there weren't any dependencies on the old behaviour.
510  */
511
512 int
513 xfs_log_unmount_write(xfs_mount_t *mp)
514 {
515         xlog_t           *log = mp->m_log;
516         xlog_in_core_t   *iclog;
517 #ifdef DEBUG
518         xlog_in_core_t   *first_iclog;
519 #endif
520         xlog_ticket_t   *tic = NULL;
521         xfs_lsn_t        lsn;
522         int              error;
523
524         /*
525          * Don't write out unmount record on read-only mounts.
526          * Or, if we are doing a forced umount (typically because of IO errors).
527          */
528         if (mp->m_flags & XFS_MOUNT_RDONLY)
529                 return 0;
530
531         error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
532         ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log)));
533
534 #ifdef DEBUG
535         first_iclog = iclog = log->l_iclog;
536         do {
537                 if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
538                         ASSERT(iclog->ic_state & XLOG_STATE_ACTIVE);
539                         ASSERT(iclog->ic_offset == 0);
540                 }
541                 iclog = iclog->ic_next;
542         } while (iclog != first_iclog);
543 #endif
544         if (! (XLOG_FORCED_SHUTDOWN(log))) {
545                 error = xfs_log_reserve(mp, 600, 1, &tic,
546                                         XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE);
547                 if (!error) {
548                         /* the data section must be 32 bit size aligned */
549                         struct {
550                             __uint16_t magic;
551                             __uint16_t pad1;
552                             __uint32_t pad2; /* may as well make it 64 bits */
553                         } magic = {
554                                 .magic = XLOG_UNMOUNT_TYPE,
555                         };
556                         struct xfs_log_iovec reg = {
557                                 .i_addr = (void *)&magic,
558                                 .i_len = sizeof(magic),
559                                 .i_type = XLOG_REG_TYPE_UNMOUNT,
560                         };
561                         struct xfs_log_vec vec = {
562                                 .lv_niovecs = 1,
563                                 .lv_iovecp = &reg,
564                         };
565
566                         /* remove inited flag */
567                         tic->t_flags = 0;
568                         error = xlog_write(log, &vec, tic, &lsn,
569                                            NULL, XLOG_UNMOUNT_TRANS);
570                         /*
571                          * At this point, we're umounting anyway,
572                          * so there's no point in transitioning log state
573                          * to IOERROR. Just continue...
574                          */
575                 }
576
577                 if (error) {
578                         xfs_fs_cmn_err(CE_ALERT, mp,
579                                 "xfs_log_unmount: unmount record failed");
580                 }
581
582
583                 spin_lock(&log->l_icloglock);
584                 iclog = log->l_iclog;
585                 atomic_inc(&iclog->ic_refcnt);
586                 xlog_state_want_sync(log, iclog);
587                 spin_unlock(&log->l_icloglock);
588                 error = xlog_state_release_iclog(log, iclog);
589
590                 spin_lock(&log->l_icloglock);
591                 if (!(iclog->ic_state == XLOG_STATE_ACTIVE ||
592                       iclog->ic_state == XLOG_STATE_DIRTY)) {
593                         if (!XLOG_FORCED_SHUTDOWN(log)) {
594                                 sv_wait(&iclog->ic_force_wait, PMEM,
595                                         &log->l_icloglock, s);
596                         } else {
597                                 spin_unlock(&log->l_icloglock);
598                         }
599                 } else {
600                         spin_unlock(&log->l_icloglock);
601                 }
602                 if (tic) {
603                         trace_xfs_log_umount_write(log, tic);
604                         xlog_ungrant_log_space(log, tic);
605                         xfs_log_ticket_put(tic);
606                 }
607         } else {
608                 /*
609                  * We're already in forced_shutdown mode, couldn't
610                  * even attempt to write out the unmount transaction.
611                  *
612                  * Go through the motions of sync'ing and releasing
613                  * the iclog, even though no I/O will actually happen,
614                  * we need to wait for other log I/Os that may already
615                  * be in progress.  Do this as a separate section of
616                  * code so we'll know if we ever get stuck here that
617                  * we're in this odd situation of trying to unmount
618                  * a file system that went into forced_shutdown as
619                  * the result of an unmount..
620                  */
621                 spin_lock(&log->l_icloglock);
622                 iclog = log->l_iclog;
623                 atomic_inc(&iclog->ic_refcnt);
624
625                 xlog_state_want_sync(log, iclog);
626                 spin_unlock(&log->l_icloglock);
627                 error =  xlog_state_release_iclog(log, iclog);
628
629                 spin_lock(&log->l_icloglock);
630
631                 if ( ! (   iclog->ic_state == XLOG_STATE_ACTIVE
632                         || iclog->ic_state == XLOG_STATE_DIRTY
633                         || iclog->ic_state == XLOG_STATE_IOERROR) ) {
634
635                                 sv_wait(&iclog->ic_force_wait, PMEM,
636                                         &log->l_icloglock, s);
637                 } else {
638                         spin_unlock(&log->l_icloglock);
639                 }
640         }
641
642         return error;
643 }       /* xfs_log_unmount_write */
644
645 /*
646  * Deallocate log structures for unmount/relocation.
647  *
648  * We need to stop the aild from running before we destroy
649  * and deallocate the log as the aild references the log.
650  */
651 void
652 xfs_log_unmount(xfs_mount_t *mp)
653 {
654         xfs_trans_ail_destroy(mp);
655         xlog_dealloc_log(mp->m_log);
656 }
657
658 void
659 xfs_log_item_init(
660         struct xfs_mount        *mp,
661         struct xfs_log_item     *item,
662         int                     type,
663         struct xfs_item_ops     *ops)
664 {
665         item->li_mountp = mp;
666         item->li_ailp = mp->m_ail;
667         item->li_type = type;
668         item->li_ops = ops;
669 }
670
671 /*
672  * Write region vectors to log.  The write happens using the space reservation
673  * of the ticket (tic).  It is not a requirement that all writes for a given
674  * transaction occur with one call to xfs_log_write(). However, it is important
675  * to note that the transaction reservation code makes an assumption about the
676  * number of log headers a transaction requires that may be violated if you
677  * don't pass all the transaction vectors in one call....
678  */
679 int
680 xfs_log_write(
681         struct xfs_mount        *mp,
682         struct xfs_log_iovec    reg[],
683         int                     nentries,
684         struct xlog_ticket      *tic,
685         xfs_lsn_t               *start_lsn)
686 {
687         struct log              *log = mp->m_log;
688         int                     error;
689         struct xfs_log_vec      vec = {
690                 .lv_niovecs = nentries,
691                 .lv_iovecp = reg,
692         };
693
694         if (XLOG_FORCED_SHUTDOWN(log))
695                 return XFS_ERROR(EIO);
696
697         error = xlog_write(log, &vec, tic, start_lsn, NULL, 0);
698         if (error)
699                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
700         return error;
701 }
702
703 void
704 xfs_log_move_tail(xfs_mount_t   *mp,
705                   xfs_lsn_t     tail_lsn)
706 {
707         xlog_ticket_t   *tic;
708         xlog_t          *log = mp->m_log;
709         int             need_bytes, free_bytes, cycle, bytes;
710
711         if (XLOG_FORCED_SHUTDOWN(log))
712                 return;
713
714         if (tail_lsn == 0) {
715                 /* needed since sync_lsn is 64 bits */
716                 spin_lock(&log->l_icloglock);
717                 tail_lsn = log->l_last_sync_lsn;
718                 spin_unlock(&log->l_icloglock);
719         }
720
721         spin_lock(&log->l_grant_lock);
722
723         /* Also an invalid lsn.  1 implies that we aren't passing in a valid
724          * tail_lsn.
725          */
726         if (tail_lsn != 1) {
727                 log->l_tail_lsn = tail_lsn;
728         }
729
730         if ((tic = log->l_write_headq)) {
731 #ifdef DEBUG
732                 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
733                         panic("Recovery problem");
734 #endif
735                 cycle = log->l_grant_write_cycle;
736                 bytes = log->l_grant_write_bytes;
737                 free_bytes = xlog_space_left(log, cycle, bytes);
738                 do {
739                         ASSERT(tic->t_flags & XLOG_TIC_PERM_RESERV);
740
741                         if (free_bytes < tic->t_unit_res && tail_lsn != 1)
742                                 break;
743                         tail_lsn = 0;
744                         free_bytes -= tic->t_unit_res;
745                         sv_signal(&tic->t_wait);
746                         tic = tic->t_next;
747                 } while (tic != log->l_write_headq);
748         }
749         if ((tic = log->l_reserve_headq)) {
750 #ifdef DEBUG
751                 if (log->l_flags & XLOG_ACTIVE_RECOVERY)
752                         panic("Recovery problem");
753 #endif
754                 cycle = log->l_grant_reserve_cycle;
755                 bytes = log->l_grant_reserve_bytes;
756                 free_bytes = xlog_space_left(log, cycle, bytes);
757                 do {
758                         if (tic->t_flags & XLOG_TIC_PERM_RESERV)
759                                 need_bytes = tic->t_unit_res*tic->t_cnt;
760                         else
761                                 need_bytes = tic->t_unit_res;
762                         if (free_bytes < need_bytes && tail_lsn != 1)
763                                 break;
764                         tail_lsn = 0;
765                         free_bytes -= need_bytes;
766                         sv_signal(&tic->t_wait);
767                         tic = tic->t_next;
768                 } while (tic != log->l_reserve_headq);
769         }
770         spin_unlock(&log->l_grant_lock);
771 }       /* xfs_log_move_tail */
772
773 /*
774  * Determine if we have a transaction that has gone to disk
775  * that needs to be covered. To begin the transition to the idle state
776  * firstly the log needs to be idle (no AIL and nothing in the iclogs).
777  * If we are then in a state where covering is needed, the caller is informed
778  * that dummy transactions are required to move the log into the idle state.
779  *
780  * Because this is called as part of the sync process, we should also indicate
781  * that dummy transactions should be issued in anything but the covered or
782  * idle states. This ensures that the log tail is accurately reflected in
783  * the log at the end of the sync, hence if a crash occurrs avoids replay
784  * of transactions where the metadata is already on disk.
785  */
786 int
787 xfs_log_need_covered(xfs_mount_t *mp)
788 {
789         int             needed = 0;
790         xlog_t          *log = mp->m_log;
791
792         if (!xfs_fs_writable(mp))
793                 return 0;
794
795         spin_lock(&log->l_icloglock);
796         switch (log->l_covered_state) {
797         case XLOG_STATE_COVER_DONE:
798         case XLOG_STATE_COVER_DONE2:
799         case XLOG_STATE_COVER_IDLE:
800                 break;
801         case XLOG_STATE_COVER_NEED:
802         case XLOG_STATE_COVER_NEED2:
803                 if (!xfs_trans_ail_tail(log->l_ailp) &&
804                     xlog_iclogs_empty(log)) {
805                         if (log->l_covered_state == XLOG_STATE_COVER_NEED)
806                                 log->l_covered_state = XLOG_STATE_COVER_DONE;
807                         else
808                                 log->l_covered_state = XLOG_STATE_COVER_DONE2;
809                 }
810                 /* FALLTHRU */
811         default:
812                 needed = 1;
813                 break;
814         }
815         spin_unlock(&log->l_icloglock);
816         return needed;
817 }
818
819 /******************************************************************************
820  *
821  *      local routines
822  *
823  ******************************************************************************
824  */
825
826 /* xfs_trans_tail_ail returns 0 when there is nothing in the list.
827  * The log manager must keep track of the last LR which was committed
828  * to disk.  The lsn of this LR will become the new tail_lsn whenever
829  * xfs_trans_tail_ail returns 0.  If we don't do this, we run into
830  * the situation where stuff could be written into the log but nothing
831  * was ever in the AIL when asked.  Eventually, we panic since the
832  * tail hits the head.
833  *
834  * We may be holding the log iclog lock upon entering this routine.
835  */
836 xfs_lsn_t
837 xlog_assign_tail_lsn(xfs_mount_t *mp)
838 {
839         xfs_lsn_t tail_lsn;
840         xlog_t    *log = mp->m_log;
841
842         tail_lsn = xfs_trans_ail_tail(mp->m_ail);
843         spin_lock(&log->l_grant_lock);
844         if (tail_lsn != 0) {
845                 log->l_tail_lsn = tail_lsn;
846         } else {
847                 tail_lsn = log->l_tail_lsn = log->l_last_sync_lsn;
848         }
849         spin_unlock(&log->l_grant_lock);
850
851         return tail_lsn;
852 }       /* xlog_assign_tail_lsn */
853
854
855 /*
856  * Return the space in the log between the tail and the head.  The head
857  * is passed in the cycle/bytes formal parms.  In the special case where
858  * the reserve head has wrapped passed the tail, this calculation is no
859  * longer valid.  In this case, just return 0 which means there is no space
860  * in the log.  This works for all places where this function is called
861  * with the reserve head.  Of course, if the write head were to ever
862  * wrap the tail, we should blow up.  Rather than catch this case here,
863  * we depend on other ASSERTions in other parts of the code.   XXXmiken
864  *
865  * This code also handles the case where the reservation head is behind
866  * the tail.  The details of this case are described below, but the end
867  * result is that we return the size of the log as the amount of space left.
868  */
869 STATIC int
870 xlog_space_left(xlog_t *log, int cycle, int bytes)
871 {
872         int free_bytes;
873         int tail_bytes;
874         int tail_cycle;
875
876         tail_bytes = BBTOB(BLOCK_LSN(log->l_tail_lsn));
877         tail_cycle = CYCLE_LSN(log->l_tail_lsn);
878         if ((tail_cycle == cycle) && (bytes >= tail_bytes)) {
879                 free_bytes = log->l_logsize - (bytes - tail_bytes);
880         } else if ((tail_cycle + 1) < cycle) {
881                 return 0;
882         } else if (tail_cycle < cycle) {
883                 ASSERT(tail_cycle == (cycle - 1));
884                 free_bytes = tail_bytes - bytes;
885         } else {
886                 /*
887                  * The reservation head is behind the tail.
888                  * In this case we just want to return the size of the
889                  * log as the amount of space left.
890                  */
891                 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
892                         "xlog_space_left: head behind tail\n"
893                         "  tail_cycle = %d, tail_bytes = %d\n"
894                         "  GH   cycle = %d, GH   bytes = %d",
895                         tail_cycle, tail_bytes, cycle, bytes);
896                 ASSERT(0);
897                 free_bytes = log->l_logsize;
898         }
899         return free_bytes;
900 }       /* xlog_space_left */
901
902
903 /*
904  * Log function which is called when an io completes.
905  *
906  * The log manager needs its own routine, in order to control what
907  * happens with the buffer after the write completes.
908  */
909 void
910 xlog_iodone(xfs_buf_t *bp)
911 {
912         xlog_in_core_t  *iclog;
913         xlog_t          *l;
914         int             aborted;
915
916         iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
917         ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long) 2);
918         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
919         aborted = 0;
920         l = iclog->ic_log;
921
922         /*
923          * If the _XFS_BARRIER_FAILED flag was set by a lower
924          * layer, it means the underlying device no longer supports
925          * barrier I/O. Warn loudly and turn off barriers.
926          */
927         if (bp->b_flags & _XFS_BARRIER_FAILED) {
928                 bp->b_flags &= ~_XFS_BARRIER_FAILED;
929                 l->l_mp->m_flags &= ~XFS_MOUNT_BARRIER;
930                 xfs_fs_cmn_err(CE_WARN, l->l_mp,
931                                 "xlog_iodone: Barriers are no longer supported"
932                                 " by device. Disabling barriers\n");
933         }
934
935         /*
936          * Race to shutdown the filesystem if we see an error.
937          */
938         if (XFS_TEST_ERROR((XFS_BUF_GETERROR(bp)), l->l_mp,
939                         XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
940                 xfs_ioerror_alert("xlog_iodone", l->l_mp, bp, XFS_BUF_ADDR(bp));
941                 XFS_BUF_STALE(bp);
942                 xfs_force_shutdown(l->l_mp, SHUTDOWN_LOG_IO_ERROR);
943                 /*
944                  * This flag will be propagated to the trans-committed
945                  * callback routines to let them know that the log-commit
946                  * didn't succeed.
947                  */
948                 aborted = XFS_LI_ABORTED;
949         } else if (iclog->ic_state & XLOG_STATE_IOERROR) {
950                 aborted = XFS_LI_ABORTED;
951         }
952
953         /* log I/O is always issued ASYNC */
954         ASSERT(XFS_BUF_ISASYNC(bp));
955         xlog_state_done_syncing(iclog, aborted);
956         /*
957          * do not reference the buffer (bp) here as we could race
958          * with it being freed after writing the unmount record to the
959          * log.
960          */
961
962 }       /* xlog_iodone */
963
964 /*
965  * Return size of each in-core log record buffer.
966  *
967  * All machines get 8 x 32kB buffers by default, unless tuned otherwise.
968  *
969  * If the filesystem blocksize is too large, we may need to choose a
970  * larger size since the directory code currently logs entire blocks.
971  */
972
973 STATIC void
974 xlog_get_iclog_buffer_size(xfs_mount_t  *mp,
975                            xlog_t       *log)
976 {
977         int size;
978         int xhdrs;
979
980         if (mp->m_logbufs <= 0)
981                 log->l_iclog_bufs = XLOG_MAX_ICLOGS;
982         else
983                 log->l_iclog_bufs = mp->m_logbufs;
984
985         /*
986          * Buffer size passed in from mount system call.
987          */
988         if (mp->m_logbsize > 0) {
989                 size = log->l_iclog_size = mp->m_logbsize;
990                 log->l_iclog_size_log = 0;
991                 while (size != 1) {
992                         log->l_iclog_size_log++;
993                         size >>= 1;
994                 }
995
996                 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
997                         /* # headers = size / 32k
998                          * one header holds cycles from 32k of data
999                          */
1000
1001                         xhdrs = mp->m_logbsize / XLOG_HEADER_CYCLE_SIZE;
1002                         if (mp->m_logbsize % XLOG_HEADER_CYCLE_SIZE)
1003                                 xhdrs++;
1004                         log->l_iclog_hsize = xhdrs << BBSHIFT;
1005                         log->l_iclog_heads = xhdrs;
1006                 } else {
1007                         ASSERT(mp->m_logbsize <= XLOG_BIG_RECORD_BSIZE);
1008                         log->l_iclog_hsize = BBSIZE;
1009                         log->l_iclog_heads = 1;
1010                 }
1011                 goto done;
1012         }
1013
1014         /* All machines use 32kB buffers by default. */
1015         log->l_iclog_size = XLOG_BIG_RECORD_BSIZE;
1016         log->l_iclog_size_log = XLOG_BIG_RECORD_BSHIFT;
1017
1018         /* the default log size is 16k or 32k which is one header sector */
1019         log->l_iclog_hsize = BBSIZE;
1020         log->l_iclog_heads = 1;
1021
1022 done:
1023         /* are we being asked to make the sizes selected above visible? */
1024         if (mp->m_logbufs == 0)
1025                 mp->m_logbufs = log->l_iclog_bufs;
1026         if (mp->m_logbsize == 0)
1027                 mp->m_logbsize = log->l_iclog_size;
1028 }       /* xlog_get_iclog_buffer_size */
1029
1030
1031 /*
1032  * This routine initializes some of the log structure for a given mount point.
1033  * Its primary purpose is to fill in enough, so recovery can occur.  However,
1034  * some other stuff may be filled in too.
1035  */
1036 STATIC xlog_t *
1037 xlog_alloc_log(xfs_mount_t      *mp,
1038                xfs_buftarg_t    *log_target,
1039                xfs_daddr_t      blk_offset,
1040                int              num_bblks)
1041 {
1042         xlog_t                  *log;
1043         xlog_rec_header_t       *head;
1044         xlog_in_core_t          **iclogp;
1045         xlog_in_core_t          *iclog, *prev_iclog=NULL;
1046         xfs_buf_t               *bp;
1047         int                     i;
1048         int                     iclogsize;
1049         int                     error = ENOMEM;
1050         uint                    log2_size = 0;
1051
1052         log = kmem_zalloc(sizeof(xlog_t), KM_MAYFAIL);
1053         if (!log) {
1054                 xlog_warn("XFS: Log allocation failed: No memory!");
1055                 goto out;
1056         }
1057
1058         log->l_mp          = mp;
1059         log->l_targ        = log_target;
1060         log->l_logsize     = BBTOB(num_bblks);
1061         log->l_logBBstart  = blk_offset;
1062         log->l_logBBsize   = num_bblks;
1063         log->l_covered_state = XLOG_STATE_COVER_IDLE;
1064         log->l_flags       |= XLOG_ACTIVE_RECOVERY;
1065
1066         log->l_prev_block  = -1;
1067         log->l_tail_lsn    = xlog_assign_lsn(1, 0);
1068         /* log->l_tail_lsn = 0x100000000LL; cycle = 1; current block = 0 */
1069         log->l_last_sync_lsn = log->l_tail_lsn;
1070         log->l_curr_cycle  = 1;     /* 0 is bad since this is initial value */
1071         log->l_grant_reserve_cycle = 1;
1072         log->l_grant_write_cycle = 1;
1073
1074         error = EFSCORRUPTED;
1075         if (xfs_sb_version_hassector(&mp->m_sb)) {
1076                 log2_size = mp->m_sb.sb_logsectlog;
1077                 if (log2_size < BBSHIFT) {
1078                         xlog_warn("XFS: Log sector size too small "
1079                                 "(0x%x < 0x%x)", log2_size, BBSHIFT);
1080                         goto out_free_log;
1081                 }
1082
1083                 log2_size -= BBSHIFT;
1084                 if (log2_size > mp->m_sectbb_log) {
1085                         xlog_warn("XFS: Log sector size too large "
1086                                 "(0x%x > 0x%x)", log2_size, mp->m_sectbb_log);
1087                         goto out_free_log;
1088                 }
1089
1090                 /* for larger sector sizes, must have v2 or external log */
1091                 if (log2_size && log->l_logBBstart > 0 &&
1092                             !xfs_sb_version_haslogv2(&mp->m_sb)) {
1093
1094                         xlog_warn("XFS: log sector size (0x%x) invalid "
1095                                   "for configuration.", log2_size);
1096                         goto out_free_log;
1097                 }
1098         }
1099         log->l_sectBBsize = 1 << log2_size;
1100
1101         xlog_get_iclog_buffer_size(mp, log);
1102
1103         error = ENOMEM;
1104         bp = xfs_buf_get_empty(log->l_iclog_size, mp->m_logdev_targp);
1105         if (!bp)
1106                 goto out_free_log;
1107         XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1108         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1109         ASSERT(XFS_BUF_ISBUSY(bp));
1110         ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
1111         log->l_xbuf = bp;
1112
1113         spin_lock_init(&log->l_icloglock);
1114         spin_lock_init(&log->l_grant_lock);
1115         sv_init(&log->l_flush_wait, 0, "flush_wait");
1116
1117         /* log record size must be multiple of BBSIZE; see xlog_rec_header_t */
1118         ASSERT((XFS_BUF_SIZE(bp) & BBMASK) == 0);
1119
1120         iclogp = &log->l_iclog;
1121         /*
1122          * The amount of memory to allocate for the iclog structure is
1123          * rather funky due to the way the structure is defined.  It is
1124          * done this way so that we can use different sizes for machines
1125          * with different amounts of memory.  See the definition of
1126          * xlog_in_core_t in xfs_log_priv.h for details.
1127          */
1128         iclogsize = log->l_iclog_size;
1129         ASSERT(log->l_iclog_size >= 4096);
1130         for (i=0; i < log->l_iclog_bufs; i++) {
1131                 *iclogp = kmem_zalloc(sizeof(xlog_in_core_t), KM_MAYFAIL);
1132                 if (!*iclogp)
1133                         goto out_free_iclog;
1134
1135                 iclog = *iclogp;
1136                 iclog->ic_prev = prev_iclog;
1137                 prev_iclog = iclog;
1138
1139                 bp = xfs_buf_get_noaddr(log->l_iclog_size, mp->m_logdev_targp);
1140                 if (!bp)
1141                         goto out_free_iclog;
1142                 if (!XFS_BUF_CPSEMA(bp))
1143                         ASSERT(0);
1144                 XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone);
1145                 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1);
1146                 iclog->ic_bp = bp;
1147                 iclog->ic_data = bp->b_addr;
1148 #ifdef DEBUG
1149                 log->l_iclog_bak[i] = (xfs_caddr_t)&(iclog->ic_header);
1150 #endif
1151                 head = &iclog->ic_header;
1152                 memset(head, 0, sizeof(xlog_rec_header_t));
1153                 head->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1154                 head->h_version = cpu_to_be32(
1155                         xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
1156                 head->h_size = cpu_to_be32(log->l_iclog_size);
1157                 /* new fields */
1158                 head->h_fmt = cpu_to_be32(XLOG_FMT);
1159                 memcpy(&head->h_fs_uuid, &mp->m_sb.sb_uuid, sizeof(uuid_t));
1160
1161                 iclog->ic_size = XFS_BUF_SIZE(bp) - log->l_iclog_hsize;
1162                 iclog->ic_state = XLOG_STATE_ACTIVE;
1163                 iclog->ic_log = log;
1164                 atomic_set(&iclog->ic_refcnt, 0);
1165                 spin_lock_init(&iclog->ic_callback_lock);
1166                 iclog->ic_callback_tail = &(iclog->ic_callback);
1167                 iclog->ic_datap = (char *)iclog->ic_data + log->l_iclog_hsize;
1168
1169                 ASSERT(XFS_BUF_ISBUSY(iclog->ic_bp));
1170                 ASSERT(XFS_BUF_VALUSEMA(iclog->ic_bp) <= 0);
1171                 sv_init(&iclog->ic_force_wait, SV_DEFAULT, "iclog-force");
1172                 sv_init(&iclog->ic_write_wait, SV_DEFAULT, "iclog-write");
1173
1174                 iclogp = &iclog->ic_next;
1175         }
1176         *iclogp = log->l_iclog;                 /* complete ring */
1177         log->l_iclog->ic_prev = prev_iclog;     /* re-write 1st prev ptr */
1178
1179         return log;
1180
1181 out_free_iclog:
1182         for (iclog = log->l_iclog; iclog; iclog = prev_iclog) {
1183                 prev_iclog = iclog->ic_next;
1184                 if (iclog->ic_bp) {
1185                         sv_destroy(&iclog->ic_force_wait);
1186                         sv_destroy(&iclog->ic_write_wait);
1187                         xfs_buf_free(iclog->ic_bp);
1188                 }
1189                 kmem_free(iclog);
1190         }
1191         spinlock_destroy(&log->l_icloglock);
1192         spinlock_destroy(&log->l_grant_lock);
1193         xfs_buf_free(log->l_xbuf);
1194 out_free_log:
1195         kmem_free(log);
1196 out:
1197         return ERR_PTR(-error);
1198 }       /* xlog_alloc_log */
1199
1200
1201 /*
1202  * Write out the commit record of a transaction associated with the given
1203  * ticket.  Return the lsn of the commit record.
1204  */
1205 STATIC int
1206 xlog_commit_record(
1207         struct log              *log,
1208         struct xlog_ticket      *ticket,
1209         struct xlog_in_core     **iclog,
1210         xfs_lsn_t               *commitlsnp)
1211 {
1212         struct xfs_mount *mp = log->l_mp;
1213         int     error;
1214         struct xfs_log_iovec reg = {
1215                 .i_addr = NULL,
1216                 .i_len = 0,
1217                 .i_type = XLOG_REG_TYPE_COMMIT,
1218         };
1219         struct xfs_log_vec vec = {
1220                 .lv_niovecs = 1,
1221                 .lv_iovecp = &reg,
1222         };
1223
1224         ASSERT_ALWAYS(iclog);
1225         error = xlog_write(log, &vec, ticket, commitlsnp, iclog,
1226                                         XLOG_COMMIT_TRANS);
1227         if (error)
1228                 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
1229         return error;
1230 }
1231
1232 /*
1233  * Push on the buffer cache code if we ever use more than 75% of the on-disk
1234  * log space.  This code pushes on the lsn which would supposedly free up
1235  * the 25% which we want to leave free.  We may need to adopt a policy which
1236  * pushes on an lsn which is further along in the log once we reach the high
1237  * water mark.  In this manner, we would be creating a low water mark.
1238  */
1239 STATIC void
1240 xlog_grant_push_ail(xfs_mount_t *mp,
1241                     int         need_bytes)
1242 {
1243     xlog_t      *log = mp->m_log;       /* pointer to the log */
1244     xfs_lsn_t   tail_lsn;               /* lsn of the log tail */
1245     xfs_lsn_t   threshold_lsn = 0;      /* lsn we'd like to be at */
1246     int         free_blocks;            /* free blocks left to write to */
1247     int         free_bytes;             /* free bytes left to write to */
1248     int         threshold_block;        /* block in lsn we'd like to be at */
1249     int         threshold_cycle;        /* lsn cycle we'd like to be at */
1250     int         free_threshold;
1251
1252     ASSERT(BTOBB(need_bytes) < log->l_logBBsize);
1253
1254     spin_lock(&log->l_grant_lock);
1255     free_bytes = xlog_space_left(log,
1256                                  log->l_grant_reserve_cycle,
1257                                  log->l_grant_reserve_bytes);
1258     tail_lsn = log->l_tail_lsn;
1259     free_blocks = BTOBBT(free_bytes);
1260
1261     /*
1262      * Set the threshold for the minimum number of free blocks in the
1263      * log to the maximum of what the caller needs, one quarter of the
1264      * log, and 256 blocks.
1265      */
1266     free_threshold = BTOBB(need_bytes);
1267     free_threshold = MAX(free_threshold, (log->l_logBBsize >> 2));
1268     free_threshold = MAX(free_threshold, 256);
1269     if (free_blocks < free_threshold) {
1270         threshold_block = BLOCK_LSN(tail_lsn) + free_threshold;
1271         threshold_cycle = CYCLE_LSN(tail_lsn);
1272         if (threshold_block >= log->l_logBBsize) {
1273             threshold_block -= log->l_logBBsize;
1274             threshold_cycle += 1;
1275         }
1276         threshold_lsn = xlog_assign_lsn(threshold_cycle, threshold_block);
1277
1278         /* Don't pass in an lsn greater than the lsn of the last
1279          * log record known to be on disk.
1280          */
1281         if (XFS_LSN_CMP(threshold_lsn, log->l_last_sync_lsn) > 0)
1282             threshold_lsn = log->l_last_sync_lsn;
1283     }
1284     spin_unlock(&log->l_grant_lock);
1285
1286     /*
1287      * Get the transaction layer to kick the dirty buffers out to
1288      * disk asynchronously. No point in trying to do this if
1289      * the filesystem is shutting down.
1290      */
1291     if (threshold_lsn &&
1292         !XLOG_FORCED_SHUTDOWN(log))
1293             xfs_trans_ail_push(log->l_ailp, threshold_lsn);
1294 }       /* xlog_grant_push_ail */
1295
1296 /*
1297  * The bdstrat callback function for log bufs. This gives us a central
1298  * place to trap bufs in case we get hit by a log I/O error and need to
1299  * shutdown. Actually, in practice, even when we didn't get a log error,
1300  * we transition the iclogs to IOERROR state *after* flushing all existing
1301  * iclogs to disk. This is because we don't want anymore new transactions to be
1302  * started or completed afterwards.
1303  */
1304 STATIC int
1305 xlog_bdstrat(
1306         struct xfs_buf          *bp)
1307 {
1308         struct xlog_in_core     *iclog;
1309
1310         iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *);
1311         if (iclog->ic_state & XLOG_STATE_IOERROR) {
1312                 XFS_BUF_ERROR(bp, EIO);
1313                 XFS_BUF_STALE(bp);
1314                 xfs_biodone(bp);
1315                 /*
1316                  * It would seem logical to return EIO here, but we rely on
1317                  * the log state machine to propagate I/O errors instead of
1318                  * doing it here.
1319                  */
1320                 return 0;
1321         }
1322
1323         bp->b_flags |= _XBF_RUN_QUEUES;
1324         xfs_buf_iorequest(bp);
1325         return 0;
1326 }
1327
1328 /*
1329  * Flush out the in-core log (iclog) to the on-disk log in an asynchronous 
1330  * fashion.  Previously, we should have moved the current iclog
1331  * ptr in the log to point to the next available iclog.  This allows further
1332  * write to continue while this code syncs out an iclog ready to go.
1333  * Before an in-core log can be written out, the data section must be scanned
1334  * to save away the 1st word of each BBSIZE block into the header.  We replace
1335  * it with the current cycle count.  Each BBSIZE block is tagged with the
1336  * cycle count because there in an implicit assumption that drives will
1337  * guarantee that entire 512 byte blocks get written at once.  In other words,
1338  * we can't have part of a 512 byte block written and part not written.  By
1339  * tagging each block, we will know which blocks are valid when recovering
1340  * after an unclean shutdown.
1341  *
1342  * This routine is single threaded on the iclog.  No other thread can be in
1343  * this routine with the same iclog.  Changing contents of iclog can there-
1344  * fore be done without grabbing the state machine lock.  Updating the global
1345  * log will require grabbing the lock though.
1346  *
1347  * The entire log manager uses a logical block numbering scheme.  Only
1348  * log_sync (and then only bwrite()) know about the fact that the log may
1349  * not start with block zero on a given device.  The log block start offset
1350  * is added immediately before calling bwrite().
1351  */
1352
1353 STATIC int
1354 xlog_sync(xlog_t                *log,
1355           xlog_in_core_t        *iclog)
1356 {
1357         xfs_caddr_t     dptr;           /* pointer to byte sized element */
1358         xfs_buf_t       *bp;
1359         int             i;
1360         uint            count;          /* byte count of bwrite */
1361         uint            count_init;     /* initial count before roundup */
1362         int             roundoff;       /* roundoff to BB or stripe */
1363         int             split = 0;      /* split write into two regions */
1364         int             error;
1365         int             v2 = xfs_sb_version_haslogv2(&log->l_mp->m_sb);
1366
1367         XFS_STATS_INC(xs_log_writes);
1368         ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
1369
1370         /* Add for LR header */
1371         count_init = log->l_iclog_hsize + iclog->ic_offset;
1372
1373         /* Round out the log write size */
1374         if (v2 && log->l_mp->m_sb.sb_logsunit > 1) {
1375                 /* we have a v2 stripe unit to use */
1376                 count = XLOG_LSUNITTOB(log, XLOG_BTOLSUNIT(log, count_init));
1377         } else {
1378                 count = BBTOB(BTOBB(count_init));
1379         }
1380         roundoff = count - count_init;
1381         ASSERT(roundoff >= 0);
1382         ASSERT((v2 && log->l_mp->m_sb.sb_logsunit > 1 && 
1383                 roundoff < log->l_mp->m_sb.sb_logsunit)
1384                 || 
1385                 (log->l_mp->m_sb.sb_logsunit <= 1 && 
1386                  roundoff < BBTOB(1)));
1387
1388         /* move grant heads by roundoff in sync */
1389         spin_lock(&log->l_grant_lock);
1390         xlog_grant_add_space(log, roundoff);
1391         spin_unlock(&log->l_grant_lock);
1392
1393         /* put cycle number in every block */
1394         xlog_pack_data(log, iclog, roundoff); 
1395
1396         /* real byte length */
1397         if (v2) {
1398                 iclog->ic_header.h_len =
1399                         cpu_to_be32(iclog->ic_offset + roundoff);
1400         } else {
1401                 iclog->ic_header.h_len =
1402                         cpu_to_be32(iclog->ic_offset);
1403         }
1404
1405         bp = iclog->ic_bp;
1406         ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) == (unsigned long)1);
1407         XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1408         XFS_BUF_SET_ADDR(bp, BLOCK_LSN(be64_to_cpu(iclog->ic_header.h_lsn)));
1409
1410         XFS_STATS_ADD(xs_log_blocks, BTOBB(count));
1411
1412         /* Do we need to split this write into 2 parts? */
1413         if (XFS_BUF_ADDR(bp) + BTOBB(count) > log->l_logBBsize) {
1414                 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp)));
1415                 count = BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp));
1416                 iclog->ic_bwritecnt = 2;        /* split into 2 writes */
1417         } else {
1418                 iclog->ic_bwritecnt = 1;
1419         }
1420         XFS_BUF_SET_COUNT(bp, count);
1421         XFS_BUF_SET_FSPRIVATE(bp, iclog);       /* save for later */
1422         XFS_BUF_ZEROFLAGS(bp);
1423         XFS_BUF_BUSY(bp);
1424         XFS_BUF_ASYNC(bp);
1425         bp->b_flags |= XBF_LOG_BUFFER;
1426         /*
1427          * Do an ordered write for the log block.
1428          * Its unnecessary to flush the first split block in the log wrap case.
1429          */
1430         if (!split && (log->l_mp->m_flags & XFS_MOUNT_BARRIER))
1431                 XFS_BUF_ORDERED(bp);
1432
1433         ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1434         ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1435
1436         xlog_verify_iclog(log, iclog, count, B_TRUE);
1437
1438         /* account for log which doesn't start at block #0 */
1439         XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1440         /*
1441          * Don't call xfs_bwrite here. We do log-syncs even when the filesystem
1442          * is shutting down.
1443          */
1444         XFS_BUF_WRITE(bp);
1445
1446         if ((error = xlog_bdstrat(bp))) {
1447                 xfs_ioerror_alert("xlog_sync", log->l_mp, bp,
1448                                   XFS_BUF_ADDR(bp));
1449                 return error;
1450         }
1451         if (split) {
1452                 bp = iclog->ic_log->l_xbuf;
1453                 ASSERT(XFS_BUF_FSPRIVATE2(bp, unsigned long) ==
1454                                                         (unsigned long)1);
1455                 XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)2);
1456                 XFS_BUF_SET_ADDR(bp, 0);             /* logical 0 */
1457                 XFS_BUF_SET_PTR(bp, (xfs_caddr_t)((__psint_t)&(iclog->ic_header)+
1458                                             (__psint_t)count), split);
1459                 XFS_BUF_SET_FSPRIVATE(bp, iclog);
1460                 XFS_BUF_ZEROFLAGS(bp);
1461                 XFS_BUF_BUSY(bp);
1462                 XFS_BUF_ASYNC(bp);
1463                 bp->b_flags |= XBF_LOG_BUFFER;
1464                 if (log->l_mp->m_flags & XFS_MOUNT_BARRIER)
1465                         XFS_BUF_ORDERED(bp);
1466                 dptr = XFS_BUF_PTR(bp);
1467                 /*
1468                  * Bump the cycle numbers at the start of each block
1469                  * since this part of the buffer is at the start of
1470                  * a new cycle.  Watch out for the header magic number
1471                  * case, though.
1472                  */
1473                 for (i = 0; i < split; i += BBSIZE) {
1474                         be32_add_cpu((__be32 *)dptr, 1);
1475                         if (be32_to_cpu(*(__be32 *)dptr) == XLOG_HEADER_MAGIC_NUM)
1476                                 be32_add_cpu((__be32 *)dptr, 1);
1477                         dptr += BBSIZE;
1478                 }
1479
1480                 ASSERT(XFS_BUF_ADDR(bp) <= log->l_logBBsize-1);
1481                 ASSERT(XFS_BUF_ADDR(bp) + BTOBB(count) <= log->l_logBBsize);
1482
1483                 /* account for internal log which doesn't start at block #0 */
1484                 XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart);
1485                 XFS_BUF_WRITE(bp);
1486                 if ((error = xlog_bdstrat(bp))) {
1487                         xfs_ioerror_alert("xlog_sync (split)", log->l_mp,
1488                                           bp, XFS_BUF_ADDR(bp));
1489                         return error;
1490                 }
1491         }
1492         return 0;
1493 }       /* xlog_sync */
1494
1495
1496 /*
1497  * Deallocate a log structure
1498  */
1499 STATIC void
1500 xlog_dealloc_log(xlog_t *log)
1501 {
1502         xlog_in_core_t  *iclog, *next_iclog;
1503         int             i;
1504
1505         iclog = log->l_iclog;
1506         for (i=0; i<log->l_iclog_bufs; i++) {
1507                 sv_destroy(&iclog->ic_force_wait);
1508                 sv_destroy(&iclog->ic_write_wait);
1509                 xfs_buf_free(iclog->ic_bp);
1510                 next_iclog = iclog->ic_next;
1511                 kmem_free(iclog);
1512                 iclog = next_iclog;
1513         }
1514         spinlock_destroy(&log->l_icloglock);
1515         spinlock_destroy(&log->l_grant_lock);
1516
1517         xfs_buf_free(log->l_xbuf);
1518         log->l_mp->m_log = NULL;
1519         kmem_free(log);
1520 }       /* xlog_dealloc_log */
1521
1522 /*
1523  * Update counters atomically now that memcpy is done.
1524  */
1525 /* ARGSUSED */
1526 static inline void
1527 xlog_state_finish_copy(xlog_t           *log,
1528                        xlog_in_core_t   *iclog,
1529                        int              record_cnt,
1530                        int              copy_bytes)
1531 {
1532         spin_lock(&log->l_icloglock);
1533
1534         be32_add_cpu(&iclog->ic_header.h_num_logops, record_cnt);
1535         iclog->ic_offset += copy_bytes;
1536
1537         spin_unlock(&log->l_icloglock);
1538 }       /* xlog_state_finish_copy */
1539
1540
1541
1542
1543 /*
1544  * print out info relating to regions written which consume
1545  * the reservation
1546  */
1547 STATIC void
1548 xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket)
1549 {
1550         uint i;
1551         uint ophdr_spc = ticket->t_res_num_ophdrs * (uint)sizeof(xlog_op_header_t);
1552
1553         /* match with XLOG_REG_TYPE_* in xfs_log.h */
1554         static char *res_type_str[XLOG_REG_TYPE_MAX] = {
1555             "bformat",
1556             "bchunk",
1557             "efi_format",
1558             "efd_format",
1559             "iformat",
1560             "icore",
1561             "iext",
1562             "ibroot",
1563             "ilocal",
1564             "iattr_ext",
1565             "iattr_broot",
1566             "iattr_local",
1567             "qformat",
1568             "dquot",
1569             "quotaoff",
1570             "LR header",
1571             "unmount",
1572             "commit",
1573             "trans header"
1574         };
1575         static char *trans_type_str[XFS_TRANS_TYPE_MAX] = {
1576             "SETATTR_NOT_SIZE",
1577             "SETATTR_SIZE",
1578             "INACTIVE",
1579             "CREATE",
1580             "CREATE_TRUNC",
1581             "TRUNCATE_FILE",
1582             "REMOVE",
1583             "LINK",
1584             "RENAME",
1585             "MKDIR",
1586             "RMDIR",
1587             "SYMLINK",
1588             "SET_DMATTRS",
1589             "GROWFS",
1590             "STRAT_WRITE",
1591             "DIOSTRAT",
1592             "WRITE_SYNC",
1593             "WRITEID",
1594             "ADDAFORK",
1595             "ATTRINVAL",
1596             "ATRUNCATE",
1597             "ATTR_SET",
1598             "ATTR_RM",
1599             "ATTR_FLAG",
1600             "CLEAR_AGI_BUCKET",
1601             "QM_SBCHANGE",
1602             "DUMMY1",
1603             "DUMMY2",
1604             "QM_QUOTAOFF",
1605             "QM_DQALLOC",
1606             "QM_SETQLIM",
1607             "QM_DQCLUSTER",
1608             "QM_QINOCREATE",
1609             "QM_QUOTAOFF_END",
1610             "SB_UNIT",
1611             "FSYNC_TS",
1612             "GROWFSRT_ALLOC",
1613             "GROWFSRT_ZERO",
1614             "GROWFSRT_FREE",
1615             "SWAPEXT"
1616         };
1617
1618         xfs_fs_cmn_err(CE_WARN, mp,
1619                         "xfs_log_write: reservation summary:\n"
1620                         "  trans type  = %s (%u)\n"
1621                         "  unit res    = %d bytes\n"
1622                         "  current res = %d bytes\n"
1623                         "  total reg   = %u bytes (o/flow = %u bytes)\n"
1624                         "  ophdrs      = %u (ophdr space = %u bytes)\n"
1625                         "  ophdr + reg = %u bytes\n"
1626                         "  num regions = %u\n",
1627                         ((ticket->t_trans_type <= 0 ||
1628                           ticket->t_trans_type > XFS_TRANS_TYPE_MAX) ?
1629                           "bad-trans-type" : trans_type_str[ticket->t_trans_type-1]),
1630                         ticket->t_trans_type,
1631                         ticket->t_unit_res,
1632                         ticket->t_curr_res,
1633                         ticket->t_res_arr_sum, ticket->t_res_o_flow,
1634                         ticket->t_res_num_ophdrs, ophdr_spc,
1635                         ticket->t_res_arr_sum + 
1636                         ticket->t_res_o_flow + ophdr_spc,
1637                         ticket->t_res_num);
1638
1639         for (i = 0; i < ticket->t_res_num; i++) {
1640                 uint r_type = ticket->t_res_arr[i].r_type; 
1641                 cmn_err(CE_WARN,
1642                             "region[%u]: %s - %u bytes\n",
1643                             i, 
1644                             ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ?
1645                             "bad-rtype" : res_type_str[r_type-1]),
1646                             ticket->t_res_arr[i].r_len);
1647         }
1648
1649         xfs_cmn_err(XFS_PTAG_LOGRES, CE_ALERT, mp,
1650                 "xfs_log_write: reservation ran out. Need to up reservation");
1651         xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1652 }
1653
1654 /*
1655  * Calculate the potential space needed by the log vector.  Each region gets
1656  * its own xlog_op_header_t and may need to be double word aligned.
1657  */
1658 static int
1659 xlog_write_calc_vec_length(
1660         struct xlog_ticket      *ticket,
1661         struct xfs_log_vec      *log_vector)
1662 {
1663         struct xfs_log_vec      *lv;
1664         int                     headers = 0;
1665         int                     len = 0;
1666         int                     i;
1667
1668         /* acct for start rec of xact */
1669         if (ticket->t_flags & XLOG_TIC_INITED)
1670                 headers++;
1671
1672         for (lv = log_vector; lv; lv = lv->lv_next) {
1673                 headers += lv->lv_niovecs;
1674
1675                 for (i = 0; i < lv->lv_niovecs; i++) {
1676                         struct xfs_log_iovec    *vecp = &lv->lv_iovecp[i];
1677
1678                         len += vecp->i_len;
1679                         xlog_tic_add_region(ticket, vecp->i_len, vecp->i_type);
1680                 }
1681         }
1682
1683         ticket->t_res_num_ophdrs += headers;
1684         len += headers * sizeof(struct xlog_op_header);
1685
1686         return len;
1687 }
1688
1689 /*
1690  * If first write for transaction, insert start record  We can't be trying to
1691  * commit if we are inited.  We can't have any "partial_copy" if we are inited.
1692  */
1693 static int
1694 xlog_write_start_rec(
1695         struct xlog_op_header   *ophdr,
1696         struct xlog_ticket      *ticket)
1697 {
1698         if (!(ticket->t_flags & XLOG_TIC_INITED))
1699                 return 0;
1700
1701         ophdr->oh_tid   = cpu_to_be32(ticket->t_tid);
1702         ophdr->oh_clientid = ticket->t_clientid;
1703         ophdr->oh_len = 0;
1704         ophdr->oh_flags = XLOG_START_TRANS;
1705         ophdr->oh_res2 = 0;
1706
1707         ticket->t_flags &= ~XLOG_TIC_INITED;
1708
1709         return sizeof(struct xlog_op_header);
1710 }
1711
1712 static xlog_op_header_t *
1713 xlog_write_setup_ophdr(
1714         struct log              *log,
1715         struct xlog_op_header   *ophdr,
1716         struct xlog_ticket      *ticket,
1717         uint                    flags)
1718 {
1719         ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
1720         ophdr->oh_clientid = ticket->t_clientid;
1721         ophdr->oh_res2 = 0;
1722
1723         /* are we copying a commit or unmount record? */
1724         ophdr->oh_flags = flags;
1725
1726         /*
1727          * We've seen logs corrupted with bad transaction client ids.  This
1728          * makes sure that XFS doesn't generate them on.  Turn this into an EIO
1729          * and shut down the filesystem.
1730          */
1731         switch (ophdr->oh_clientid)  {
1732         case XFS_TRANSACTION:
1733         case XFS_VOLUME:
1734         case XFS_LOG:
1735                 break;
1736         default:
1737                 xfs_fs_cmn_err(CE_WARN, log->l_mp,
1738                         "Bad XFS transaction clientid 0x%x in ticket 0x%p",
1739                         ophdr->oh_clientid, ticket);
1740                 return NULL;
1741         }
1742
1743         return ophdr;
1744 }
1745
1746 /*
1747  * Set up the parameters of the region copy into the log. This has
1748  * to handle region write split across multiple log buffers - this
1749  * state is kept external to this function so that this code can
1750  * can be written in an obvious, self documenting manner.
1751  */
1752 static int
1753 xlog_write_setup_copy(
1754         struct xlog_ticket      *ticket,
1755         struct xlog_op_header   *ophdr,
1756         int                     space_available,
1757         int                     space_required,
1758         int                     *copy_off,
1759         int                     *copy_len,
1760         int                     *last_was_partial_copy,
1761         int                     *bytes_consumed)
1762 {
1763         int                     still_to_copy;
1764
1765         still_to_copy = space_required - *bytes_consumed;
1766         *copy_off = *bytes_consumed;
1767
1768         if (still_to_copy <= space_available) {
1769                 /* write of region completes here */
1770                 *copy_len = still_to_copy;
1771                 ophdr->oh_len = cpu_to_be32(*copy_len);
1772                 if (*last_was_partial_copy)
1773                         ophdr->oh_flags |= (XLOG_END_TRANS|XLOG_WAS_CONT_TRANS);
1774                 *last_was_partial_copy = 0;
1775                 *bytes_consumed = 0;
1776                 return 0;
1777         }
1778
1779         /* partial write of region, needs extra log op header reservation */
1780         *copy_len = space_available;
1781         ophdr->oh_len = cpu_to_be32(*copy_len);
1782         ophdr->oh_flags |= XLOG_CONTINUE_TRANS;
1783         if (*last_was_partial_copy)
1784                 ophdr->oh_flags |= XLOG_WAS_CONT_TRANS;
1785         *bytes_consumed += *copy_len;
1786         (*last_was_partial_copy)++;
1787
1788         /* account for new log op header */
1789         ticket->t_curr_res -= sizeof(struct xlog_op_header);
1790         ticket->t_res_num_ophdrs++;
1791
1792         return sizeof(struct xlog_op_header);
1793 }
1794
1795 static int
1796 xlog_write_copy_finish(
1797         struct log              *log,
1798         struct xlog_in_core     *iclog,
1799         uint                    flags,
1800         int                     *record_cnt,
1801         int                     *data_cnt,
1802         int                     *partial_copy,
1803         int                     *partial_copy_len,
1804         int                     log_offset,
1805         struct xlog_in_core     **commit_iclog)
1806 {
1807         if (*partial_copy) {
1808                 /*
1809                  * This iclog has already been marked WANT_SYNC by
1810                  * xlog_state_get_iclog_space.
1811                  */
1812                 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1813                 *record_cnt = 0;
1814                 *data_cnt = 0;
1815                 return xlog_state_release_iclog(log, iclog);
1816         }
1817
1818         *partial_copy = 0;
1819         *partial_copy_len = 0;
1820
1821         if (iclog->ic_size - log_offset <= sizeof(xlog_op_header_t)) {
1822                 /* no more space in this iclog - push it. */
1823                 xlog_state_finish_copy(log, iclog, *record_cnt, *data_cnt);
1824                 *record_cnt = 0;
1825                 *data_cnt = 0;
1826
1827                 spin_lock(&log->l_icloglock);
1828                 xlog_state_want_sync(log, iclog);
1829                 spin_unlock(&log->l_icloglock);
1830
1831                 if (!commit_iclog)
1832                         return xlog_state_release_iclog(log, iclog);
1833                 ASSERT(flags & XLOG_COMMIT_TRANS);
1834                 *commit_iclog = iclog;
1835         }
1836
1837         return 0;
1838 }
1839
1840 /*
1841  * Write some region out to in-core log
1842  *
1843  * This will be called when writing externally provided regions or when
1844  * writing out a commit record for a given transaction.
1845  *
1846  * General algorithm:
1847  *      1. Find total length of this write.  This may include adding to the
1848  *              lengths passed in.
1849  *      2. Check whether we violate the tickets reservation.
1850  *      3. While writing to this iclog
1851  *          A. Reserve as much space in this iclog as can get
1852  *          B. If this is first write, save away start lsn
1853  *          C. While writing this region:
1854  *              1. If first write of transaction, write start record
1855  *              2. Write log operation header (header per region)
1856  *              3. Find out if we can fit entire region into this iclog
1857  *              4. Potentially, verify destination memcpy ptr
1858  *              5. Memcpy (partial) region
1859  *              6. If partial copy, release iclog; otherwise, continue
1860  *                      copying more regions into current iclog
1861  *      4. Mark want sync bit (in simulation mode)
1862  *      5. Release iclog for potential flush to on-disk log.
1863  *
1864  * ERRORS:
1865  * 1.   Panic if reservation is overrun.  This should never happen since
1866  *      reservation amounts are generated internal to the filesystem.
1867  * NOTES:
1868  * 1. Tickets are single threaded data structures.
1869  * 2. The XLOG_END_TRANS & XLOG_CONTINUE_TRANS flags are passed down to the
1870  *      syncing routine.  When a single log_write region needs to span
1871  *      multiple in-core logs, the XLOG_CONTINUE_TRANS bit should be set
1872  *      on all log operation writes which don't contain the end of the
1873  *      region.  The XLOG_END_TRANS bit is used for the in-core log
1874  *      operation which contains the end of the continued log_write region.
1875  * 3. When xlog_state_get_iclog_space() grabs the rest of the current iclog,
1876  *      we don't really know exactly how much space will be used.  As a result,
1877  *      we don't update ic_offset until the end when we know exactly how many
1878  *      bytes have been written out.
1879  */
1880 STATIC int
1881 xlog_write(
1882         struct log              *log,
1883         struct xfs_log_vec      *log_vector,
1884         struct xlog_ticket      *ticket,
1885         xfs_lsn_t               *start_lsn,
1886         struct xlog_in_core     **commit_iclog,
1887         uint                    flags)
1888 {
1889         struct xlog_in_core     *iclog = NULL;
1890         struct xfs_log_iovec    *vecp;
1891         struct xfs_log_vec      *lv;
1892         int                     len;
1893         int                     index;
1894         int                     partial_copy = 0;
1895         int                     partial_copy_len = 0;
1896         int                     contwr = 0;
1897         int                     record_cnt = 0;
1898         int                     data_cnt = 0;
1899         int                     error;
1900
1901         *start_lsn = 0;
1902
1903         len = xlog_write_calc_vec_length(ticket, log_vector);
1904         if (ticket->t_curr_res < len)
1905                 xlog_print_tic_res(log->l_mp, ticket);
1906         ticket->t_curr_res -= len;
1907
1908         index = 0;
1909         lv = log_vector;
1910         vecp = lv->lv_iovecp;
1911         while (lv && index < lv->lv_niovecs) {
1912                 void            *ptr;
1913                 int             log_offset;
1914
1915                 error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
1916                                                    &contwr, &log_offset);
1917                 if (error)
1918                         return error;
1919
1920                 ASSERT(log_offset <= iclog->ic_size - 1);
1921                 ptr = iclog->ic_datap + log_offset;
1922
1923                 /* start_lsn is the first lsn written to. That's all we need. */
1924                 if (!*start_lsn)
1925                         *start_lsn = be64_to_cpu(iclog->ic_header.h_lsn);
1926
1927                 /*
1928                  * This loop writes out as many regions as can fit in the amount
1929                  * of space which was allocated by xlog_state_get_iclog_space().
1930                  */
1931                 while (lv && index < lv->lv_niovecs) {
1932                         struct xfs_log_iovec    *reg = &vecp[index];
1933                         struct xlog_op_header   *ophdr;
1934                         int                     start_rec_copy;
1935                         int                     copy_len;
1936                         int                     copy_off;
1937
1938                         ASSERT(reg->i_len % sizeof(__int32_t) == 0);
1939                         ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
1940
1941                         start_rec_copy = xlog_write_start_rec(ptr, ticket);
1942                         if (start_rec_copy) {
1943                                 record_cnt++;
1944                                 xlog_write_adv_cnt(&ptr, &len, &log_offset,
1945                                                    start_rec_copy);
1946                         }
1947
1948                         ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
1949                         if (!ophdr)
1950                                 return XFS_ERROR(EIO);
1951
1952                         xlog_write_adv_cnt(&ptr, &len, &log_offset,
1953                                            sizeof(struct xlog_op_header));
1954
1955                         len += xlog_write_setup_copy(ticket, ophdr,
1956                                                      iclog->ic_size-log_offset,
1957                                                      reg->i_len,
1958                                                      &copy_off, &copy_len,
1959                                                      &partial_copy,
1960                                                      &partial_copy_len);
1961                         xlog_verify_dest_ptr(log, ptr);
1962
1963                         /* copy region */
1964                         ASSERT(copy_len >= 0);
1965                         memcpy(ptr, reg->i_addr + copy_off, copy_len);
1966                         xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);
1967
1968                         copy_len += start_rec_copy + sizeof(xlog_op_header_t);
1969                         record_cnt++;
1970                         data_cnt += contwr ? copy_len : 0;
1971
1972                         error = xlog_write_copy_finish(log, iclog, flags,
1973                                                        &record_cnt, &data_cnt,
1974                                                        &partial_copy,
1975                                                        &partial_copy_len,
1976                                                        log_offset,
1977                                                        commit_iclog);
1978                         if (error)
1979                                 return error;
1980
1981                         /*
1982                          * if we had a partial copy, we need to get more iclog
1983                          * space but we don't want to increment the region
1984                          * index because there is still more is this region to
1985                          * write.
1986                          *
1987                          * If we completed writing this region, and we flushed
1988                          * the iclog (indicated by resetting of the record
1989                          * count), then we also need to get more log space. If
1990                          * this was the last record, though, we are done and
1991                          * can just return.
1992                          */
1993                         if (partial_copy)
1994                                 break;
1995
1996                         if (++index == lv->lv_niovecs) {
1997                                 lv = lv->lv_next;
1998                                 index = 0;
1999                                 if (lv)
2000                                         vecp = lv->lv_iovecp;
2001                         }
2002                         if (record_cnt == 0) {
2003                                 if (!lv)
2004                                         return 0;
2005                                 break;
2006                         }
2007                 }
2008         }
2009
2010         ASSERT(len == 0);
2011
2012         xlog_state_finish_copy(log, iclog, record_cnt, data_cnt);
2013         if (!commit_iclog)
2014                 return xlog_state_release_iclog(log, iclog);
2015
2016         ASSERT(flags & XLOG_COMMIT_TRANS);
2017         *commit_iclog = iclog;
2018         return 0;
2019 }
2020
2021
2022 /*****************************************************************************
2023  *
2024  *              State Machine functions
2025  *
2026  *****************************************************************************
2027  */
2028
2029 /* Clean iclogs starting from the head.  This ordering must be
2030  * maintained, so an iclog doesn't become ACTIVE beyond one that
2031  * is SYNCING.  This is also required to maintain the notion that we use
2032  * a ordered wait queue to hold off would be writers to the log when every
2033  * iclog is trying to sync to disk.
2034  *
2035  * State Change: DIRTY -> ACTIVE
2036  */
2037 STATIC void
2038 xlog_state_clean_log(xlog_t *log)
2039 {
2040         xlog_in_core_t  *iclog;
2041         int changed = 0;
2042
2043         iclog = log->l_iclog;
2044         do {
2045                 if (iclog->ic_state == XLOG_STATE_DIRTY) {
2046                         iclog->ic_state = XLOG_STATE_ACTIVE;
2047                         iclog->ic_offset       = 0;
2048                         ASSERT(iclog->ic_callback == NULL);
2049                         /*
2050                          * If the number of ops in this iclog indicate it just
2051                          * contains the dummy transaction, we can
2052                          * change state into IDLE (the second time around).
2053                          * Otherwise we should change the state into
2054                          * NEED a dummy.
2055                          * We don't need to cover the dummy.
2056                          */
2057                         if (!changed &&
2058                            (be32_to_cpu(iclog->ic_header.h_num_logops) ==
2059                                         XLOG_COVER_OPS)) {
2060                                 changed = 1;
2061                         } else {
2062                                 /*
2063                                  * We have two dirty iclogs so start over
2064                                  * This could also be num of ops indicates
2065                                  * this is not the dummy going out.
2066                                  */
2067                                 changed = 2;
2068                         }
2069                         iclog->ic_header.h_num_logops = 0;
2070                         memset(iclog->ic_header.h_cycle_data, 0,
2071                               sizeof(iclog->ic_header.h_cycle_data));
2072                         iclog->ic_header.h_lsn = 0;
2073                 } else if (iclog->ic_state == XLOG_STATE_ACTIVE)
2074                         /* do nothing */;
2075                 else
2076                         break;  /* stop cleaning */
2077                 iclog = iclog->ic_next;
2078         } while (iclog != log->l_iclog);
2079
2080         /* log is locked when we are called */
2081         /*
2082          * Change state for the dummy log recording.
2083          * We usually go to NEED. But we go to NEED2 if the changed indicates
2084          * we are done writing the dummy record.
2085          * If we are done with the second dummy recored (DONE2), then
2086          * we go to IDLE.
2087          */
2088         if (changed) {
2089                 switch (log->l_covered_state) {
2090                 case XLOG_STATE_COVER_IDLE:
2091                 case XLOG_STATE_COVER_NEED:
2092                 case XLOG_STATE_COVER_NEED2:
2093                         log->l_covered_state = XLOG_STATE_COVER_NEED;
2094                         break;
2095
2096                 case XLOG_STATE_COVER_DONE:
2097                         if (changed == 1)
2098                                 log->l_covered_state = XLOG_STATE_COVER_NEED2;
2099                         else
2100                                 log->l_covered_state = XLOG_STATE_COVER_NEED;
2101                         break;
2102
2103                 case XLOG_STATE_COVER_DONE2:
2104                         if (changed == 1)
2105                                 log->l_covered_state = XLOG_STATE_COVER_IDLE;
2106                         else
2107                                 log->l_covered_state = XLOG_STATE_COVER_NEED;
2108                         break;
2109
2110                 default:
2111                         ASSERT(0);
2112                 }
2113         }
2114 }       /* xlog_state_clean_log */
2115
2116 STATIC xfs_lsn_t
2117 xlog_get_lowest_lsn(
2118         xlog_t          *log)
2119 {
2120         xlog_in_core_t  *lsn_log;
2121         xfs_lsn_t       lowest_lsn, lsn;
2122
2123         lsn_log = log->l_iclog;
2124         lowest_lsn = 0;
2125         do {
2126             if (!(lsn_log->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY))) {
2127                 lsn = be64_to_cpu(lsn_log->ic_header.h_lsn);
2128                 if ((lsn && !lowest_lsn) ||
2129                     (XFS_LSN_CMP(lsn, lowest_lsn) < 0)) {
2130                         lowest_lsn = lsn;
2131                 }
2132             }
2133             lsn_log = lsn_log->ic_next;
2134         } while (lsn_log != log->l_iclog);
2135         return lowest_lsn;
2136 }
2137
2138
2139 STATIC void
2140 xlog_state_do_callback(
2141         xlog_t          *log,
2142         int             aborted,
2143         xlog_in_core_t  *ciclog)
2144 {
2145         xlog_in_core_t     *iclog;
2146         xlog_in_core_t     *first_iclog;        /* used to know when we've
2147                                                  * processed all iclogs once */
2148         xfs_log_callback_t *cb, *cb_next;
2149         int                flushcnt = 0;
2150         xfs_lsn_t          lowest_lsn;
2151         int                ioerrors;    /* counter: iclogs with errors */
2152         int                loopdidcallbacks; /* flag: inner loop did callbacks*/
2153         int                funcdidcallbacks; /* flag: function did callbacks */
2154         int                repeats;     /* for issuing console warnings if
2155                                          * looping too many times */
2156         int                wake = 0;
2157
2158         spin_lock(&log->l_icloglock);
2159         first_iclog = iclog = log->l_iclog;
2160         ioerrors = 0;
2161         funcdidcallbacks = 0;
2162         repeats = 0;
2163
2164         do {
2165                 /*
2166                  * Scan all iclogs starting with the one pointed to by the
2167                  * log.  Reset this starting point each time the log is
2168                  * unlocked (during callbacks).
2169                  *
2170                  * Keep looping through iclogs until one full pass is made
2171                  * without running any callbacks.
2172                  */
2173                 first_iclog = log->l_iclog;
2174                 iclog = log->l_iclog;
2175                 loopdidcallbacks = 0;
2176                 repeats++;
2177
2178                 do {
2179
2180                         /* skip all iclogs in the ACTIVE & DIRTY states */
2181                         if (iclog->ic_state &
2182                             (XLOG_STATE_ACTIVE|XLOG_STATE_DIRTY)) {
2183                                 iclog = iclog->ic_next;
2184                                 continue;
2185                         }
2186
2187                         /*
2188                          * Between marking a filesystem SHUTDOWN and stopping
2189                          * the log, we do flush all iclogs to disk (if there
2190                          * wasn't a log I/O error). So, we do want things to
2191                          * go smoothly in case of just a SHUTDOWN  w/o a
2192                          * LOG_IO_ERROR.
2193                          */
2194                         if (!(iclog->ic_state & XLOG_STATE_IOERROR)) {
2195                                 /*
2196                                  * Can only perform callbacks in order.  Since
2197                                  * this iclog is not in the DONE_SYNC/
2198                                  * DO_CALLBACK state, we skip the rest and
2199                                  * just try to clean up.  If we set our iclog
2200                                  * to DO_CALLBACK, we will not process it when
2201                                  * we retry since a previous iclog is in the
2202                                  * CALLBACK and the state cannot change since
2203                                  * we are holding the l_icloglock.
2204                                  */
2205                                 if (!(iclog->ic_state &
2206                                         (XLOG_STATE_DONE_SYNC |
2207                                                  XLOG_STATE_DO_CALLBACK))) {
2208                                         if (ciclog && (ciclog->ic_state ==
2209                                                         XLOG_STATE_DONE_SYNC)) {
2210                                                 ciclog->ic_state = XLOG_STATE_DO_CALLBACK;
2211                                         }
2212                                         break;
2213                                 }
2214                                 /*
2215                                  * We now have an iclog that is in either the
2216                                  * DO_CALLBACK or DONE_SYNC states. The other
2217                                  * states (WANT_SYNC, SYNCING, or CALLBACK were
2218                                  * caught by the above if and are going to
2219                                  * clean (i.e. we aren't doing their callbacks)
2220                                  * see the above if.
2221                                  */
2222
2223                                 /*
2224                                  * We will do one more check here to see if we
2225                                  * have chased our tail around.
2226                                  */
2227
2228                                 lowest_lsn = xlog_get_lowest_lsn(log);
2229                                 if (lowest_lsn &&
2230                                     XFS_LSN_CMP(lowest_lsn,
2231                                                 be64_to_cpu(iclog->ic_header.h_lsn)) < 0) {
2232                                         iclog = iclog->ic_next;
2233                                         continue; /* Leave this iclog for
2234                                                    * another thread */
2235                                 }
2236
2237                                 iclog->ic_state = XLOG_STATE_CALLBACK;
2238
2239                                 spin_unlock(&log->l_icloglock);
2240
2241                                 /* l_last_sync_lsn field protected by
2242                                  * l_grant_lock. Don't worry about iclog's lsn.
2243                                  * No one else can be here except us.
2244                                  */
2245                                 spin_lock(&log->l_grant_lock);
2246                                 ASSERT(XFS_LSN_CMP(log->l_last_sync_lsn,
2247                                        be64_to_cpu(iclog->ic_header.h_lsn)) <= 0);
2248                                 log->l_last_sync_lsn =
2249                                         be64_to_cpu(iclog->ic_header.h_lsn);
2250                                 spin_unlock(&log->l_grant_lock);
2251
2252                         } else {
2253                                 spin_unlock(&log->l_icloglock);
2254                                 ioerrors++;
2255                         }
2256
2257                         /*
2258                          * Keep processing entries in the callback list until
2259                          * we come around and it is empty.  We need to
2260                          * atomically see that the list is empty and change the
2261                          * state to DIRTY so that we don't miss any more
2262                          * callbacks being added.
2263                          */
2264                         spin_lock(&iclog->ic_callback_lock);
2265                         cb = iclog->ic_callback;
2266                         while (cb) {
2267                                 iclog->ic_callback_tail = &(iclog->ic_callback);
2268                                 iclog->ic_callback = NULL;
2269                                 spin_unlock(&iclog->ic_callback_lock);
2270
2271                                 /* perform callbacks in the order given */
2272                                 for (; cb; cb = cb_next) {
2273                                         cb_next = cb->cb_next;
2274                                         cb->cb_func(cb->cb_arg, aborted);
2275                                 }
2276                                 spin_lock(&iclog->ic_callback_lock);
2277                                 cb = iclog->ic_callback;
2278                         }
2279
2280                         loopdidcallbacks++;
2281                         funcdidcallbacks++;
2282
2283                         spin_lock(&log->l_icloglock);
2284                         ASSERT(iclog->ic_callback == NULL);
2285                         spin_unlock(&iclog->ic_callback_lock);
2286                         if (!(iclog->ic_state & XLOG_STATE_IOERROR))
2287                                 iclog->ic_state = XLOG_STATE_DIRTY;
2288
2289                         /*
2290                          * Transition from DIRTY to ACTIVE if applicable.
2291                          * NOP if STATE_IOERROR.
2292                          */
2293                         xlog_state_clean_log(log);
2294
2295                         /* wake up threads waiting in xfs_log_force() */
2296                         sv_broadcast(&iclog->ic_force_wait);
2297
2298                         iclog = iclog->ic_next;
2299                 } while (first_iclog != iclog);
2300
2301                 if (repeats > 5000) {
2302                         flushcnt += repeats;
2303                         repeats = 0;
2304                         xfs_fs_cmn_err(CE_WARN, log->l_mp,
2305                                 "%s: possible infinite loop (%d iterations)",
2306                                 __func__, flushcnt);
2307                 }
2308         } while (!ioerrors && loopdidcallbacks);
2309
2310         /*
2311          * make one last gasp attempt to see if iclogs are being left in
2312          * limbo..
2313          */
2314 #ifdef DEBUG
2315         if (funcdidcallbacks) {
2316                 first_iclog = iclog = log->l_iclog;
2317                 do {
2318                         ASSERT(iclog->ic_state != XLOG_STATE_DO_CALLBACK);
2319                         /*
2320                          * Terminate the loop if iclogs are found in states
2321                          * which will cause other threads to clean up iclogs.
2322                          *
2323                          * SYNCING - i/o completion will go through logs
2324                          * DONE_SYNC - interrupt thread should be waiting for
2325                          *              l_icloglock
2326                          * IOERROR - give up hope all ye who enter here
2327                          */
2328                         if (iclog->ic_state == XLOG_STATE_WANT_SYNC ||
2329                             iclog->ic_state == XLOG_STATE_SYNCING ||
2330                             iclog->ic_state == XLOG_STATE_DONE_SYNC ||
2331                             iclog->ic_state == XLOG_STATE_IOERROR )
2332                                 break;
2333                         iclog = iclog->ic_next;
2334                 } while (first_iclog != iclog);
2335         }
2336 #endif
2337
2338         if (log->l_iclog->ic_state & (XLOG_STATE_ACTIVE|XLOG_STATE_IOERROR))
2339                 wake = 1;
2340         spin_unlock(&log->l_icloglock);
2341
2342         if (wake)
2343                 sv_broadcast(&log->l_flush_wait);
2344 }
2345
2346
2347 /*
2348  * Finish transitioning this iclog to the dirty state.
2349  *
2350  * Make sure that we completely execute this routine only when this is
2351  * the last call to the iclog.  There is a good chance that iclog flushes,
2352  * when we reach the end of the physical log, get turned into 2 separate
2353  * calls to bwrite.  Hence, one iclog flush could generate two calls to this
2354  * routine.  By using the reference count bwritecnt, we guarantee that only
2355  * the second completion goes through.
2356  *
2357  * Callbacks could take time, so they are done outside the scope of the
2358  * global state machine log lock.
2359  */
2360 STATIC void
2361 xlog_state_done_syncing(
2362         xlog_in_core_t  *iclog,
2363         int             aborted)
2364 {
2365         xlog_t             *log = iclog->ic_log;
2366
2367         spin_lock(&log->l_icloglock);
2368
2369         ASSERT(iclog->ic_state == XLOG_STATE_SYNCING ||
2370                iclog->ic_state == XLOG_STATE_IOERROR);
2371         ASSERT(atomic_read(&iclog->ic_refcnt) == 0);
2372         ASSERT(iclog->ic_bwritecnt == 1 || iclog->ic_bwritecnt == 2);
2373
2374
2375         /*
2376          * If we got an error, either on the first buffer, or in the case of
2377          * split log writes, on the second, we mark ALL iclogs STATE_IOERROR,
2378          * and none should ever be attempted to be written to disk
2379          * again.
2380          */
2381         if (iclog->ic_state != XLOG_STATE_IOERROR) {
2382                 if (--iclog->ic_bwritecnt == 1) {
2383                         spin_unlock(&log->l_icloglock);
2384                         return;
2385                 }
2386                 iclog->ic_state = XLOG_STATE_DONE_SYNC;
2387         }
2388
2389         /*
2390          * Someone could be sleeping prior to writing out the next
2391          * iclog buffer, we wake them all, one will get to do the
2392          * I/O, the others get to wait for the result.
2393          */
2394         sv_broadcast(&iclog->ic_write_wait);
2395         spin_unlock(&log->l_icloglock);
2396         xlog_state_do_callback(log, aborted, iclog);    /* also cleans log */
2397 }       /* xlog_state_done_syncing */
2398
2399
2400 /*
2401  * If the head of the in-core log ring is not (ACTIVE or DIRTY), then we must
2402  * sleep.  We wait on the flush queue on the head iclog as that should be
2403  * the first iclog to complete flushing. Hence if all iclogs are syncing,
2404  * we will wait here and all new writes will sleep until a sync completes.
2405  *
2406  * The in-core logs are used in a circular fashion. They are not used
2407  * out-of-order even when an iclog past the head is free.
2408  *
2409  * return:
2410  *      * log_offset where xlog_write() can start writing into the in-core
2411  *              log's data space.
2412  *      * in-core log pointer to which xlog_write() should write.
2413  *      * boolean indicating this is a continued write to an in-core log.
2414  *              If this is the last write, then the in-core log's offset field
2415  *              needs to be incremented, depending on the amount of data which
2416  *              is copied.
2417  */
2418 STATIC int
2419 xlog_state_get_iclog_space(xlog_t         *log,
2420                            int            len,
2421                            xlog_in_core_t **iclogp,
2422                            xlog_ticket_t  *ticket,
2423                            int            *continued_write,
2424                            int            *logoffsetp)
2425 {
2426         int               log_offset;
2427         xlog_rec_header_t *head;
2428         xlog_in_core_t    *iclog;
2429         int               error;
2430
2431 restart:
2432         spin_lock(&log->l_icloglock);
2433         if (XLOG_FORCED_SHUTDOWN(log)) {
2434                 spin_unlock(&log->l_icloglock);
2435                 return XFS_ERROR(EIO);
2436         }
2437
2438         iclog = log->l_iclog;
2439         if (iclog->ic_state != XLOG_STATE_ACTIVE) {
2440                 XFS_STATS_INC(xs_log_noiclogs);
2441
2442                 /* Wait for log writes to have flushed */
2443                 sv_wait(&log->l_flush_wait, 0, &log->l_icloglock, 0);
2444                 goto restart;
2445         }
2446
2447         head = &iclog->ic_header;
2448
2449         atomic_inc(&iclog->ic_refcnt);  /* prevents sync */
2450         log_offset = iclog->ic_offset;
2451
2452         /* On the 1st write to an iclog, figure out lsn.  This works
2453          * if iclogs marked XLOG_STATE_WANT_SYNC always write out what they are
2454          * committing to.  If the offset is set, that's how many blocks
2455          * must be written.
2456          */
2457         if (log_offset == 0) {
2458                 ticket->t_curr_res -= log->l_iclog_hsize;
2459                 xlog_tic_add_region(ticket,
2460                                     log->l_iclog_hsize,
2461                                     XLOG_REG_TYPE_LRHEADER);
2462                 head->h_cycle = cpu_to_be32(log->l_curr_cycle);
2463                 head->h_lsn = cpu_to_be64(
2464                         xlog_assign_lsn(log->l_curr_cycle, log->l_curr_block));
2465                 ASSERT(log->l_curr_block >= 0);
2466         }
2467
2468         /* If there is enough room to write everything, then do it.  Otherwise,
2469          * claim the rest of the region and make sure the XLOG_STATE_WANT_SYNC
2470          * bit is on, so this will get flushed out.  Don't update ic_offset
2471          * until you know exactly how many bytes get copied.  Therefore, wait
2472          * until later to update ic_offset.
2473          *
2474          * xlog_write() algorithm assumes that at least 2 xlog_op_header_t's
2475          * can fit into remaining data section.
2476          */
2477         if (iclog->ic_size - iclog->ic_offset < 2*sizeof(xlog_op_header_t)) {
2478                 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2479
2480                 /*
2481                  * If I'm the only one writing to this iclog, sync it to disk.
2482                  * We need to do an atomic compare and decrement here to avoid
2483                  * racing with concurrent atomic_dec_and_lock() calls in
2484                  * xlog_state_release_iclog() when there is more than one
2485                  * reference to the iclog.
2486                  */
2487                 if (!atomic_add_unless(&iclog->ic_refcnt, -1, 1)) {
2488                         /* we are the only one */
2489                         spin_unlock(&log->l_icloglock);
2490                         error = xlog_state_release_iclog(log, iclog);
2491                         if (error)
2492                                 return error;
2493                 } else {
2494                         spin_unlock(&log->l_icloglock);
2495                 }
2496                 goto restart;
2497         }
2498
2499         /* Do we have enough room to write the full amount in the remainder
2500          * of this iclog?  Or must we continue a write on the next iclog and
2501          * mark this iclog as completely taken?  In the case where we switch
2502          * iclogs (to mark it taken), this particular iclog will release/sync
2503          * to disk in xlog_write().
2504          */
2505         if (len <= iclog->ic_size - iclog->ic_offset) {
2506                 *continued_write = 0;
2507                 iclog->ic_offset += len;
2508         } else {
2509                 *continued_write = 1;
2510                 xlog_state_switch_iclogs(log, iclog, iclog->ic_size);
2511         }
2512         *iclogp = iclog;
2513
2514         ASSERT(iclog->ic_offset <= iclog->ic_size);
2515         spin_unlock(&log->l_icloglock);
2516
2517         *logoffsetp = log_offset;
2518         return 0;
2519 }       /* xlog_state_get_iclog_space */
2520
2521 /*
2522  * Atomically get the log space required for a log ticket.
2523  *
2524  * Once a ticket gets put onto the reserveq, it will only return after
2525  * the needed reservation is satisfied.
2526  */
2527 STATIC int
2528 xlog_grant_log_space(xlog_t        *log,
2529                      xlog_ticket_t *tic)
2530 {
2531         int              free_bytes;
2532         int              need_bytes;
2533 #ifdef DEBUG
2534         xfs_lsn_t        tail_lsn;
2535 #endif
2536
2537
2538 #ifdef DEBUG
2539         if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2540                 panic("grant Recovery problem");
2541 #endif
2542
2543         /* Is there space or do we need to sleep? */
2544         spin_lock(&log->l_grant_lock);
2545
2546         trace_xfs_log_grant_enter(log, tic);
2547
2548         /* something is already sleeping; insert new transaction at end */
2549         if (log->l_reserve_headq) {
2550                 xlog_ins_ticketq(&log->l_reserve_headq, tic);
2551
2552                 trace_xfs_log_grant_sleep1(log, tic);
2553
2554                 /*
2555                  * Gotta check this before going to sleep, while we're
2556                  * holding the grant lock.
2557                  */
2558                 if (XLOG_FORCED_SHUTDOWN(log))
2559                         goto error_return;
2560
2561                 XFS_STATS_INC(xs_sleep_logspace);
2562                 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
2563                 /*
2564                  * If we got an error, and the filesystem is shutting down,
2565                  * we'll catch it down below. So just continue...
2566                  */
2567                 trace_xfs_log_grant_wake1(log, tic);
2568                 spin_lock(&log->l_grant_lock);
2569         }
2570         if (tic->t_flags & XFS_LOG_PERM_RESERV)
2571                 need_bytes = tic->t_unit_res*tic->t_ocnt;
2572         else
2573                 need_bytes = tic->t_unit_res;
2574
2575 redo:
2576         if (XLOG_FORCED_SHUTDOWN(log))
2577                 goto error_return;
2578
2579         free_bytes = xlog_space_left(log, log->l_grant_reserve_cycle,
2580                                      log->l_grant_reserve_bytes);
2581         if (free_bytes < need_bytes) {
2582                 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2583                         xlog_ins_ticketq(&log->l_reserve_headq, tic);
2584
2585                 trace_xfs_log_grant_sleep2(log, tic);
2586
2587                 spin_unlock(&log->l_grant_lock);
2588                 xlog_grant_push_ail(log->l_mp, need_bytes);
2589                 spin_lock(&log->l_grant_lock);
2590
2591                 XFS_STATS_INC(xs_sleep_logspace);
2592                 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
2593
2594                 spin_lock(&log->l_grant_lock);
2595                 if (XLOG_FORCED_SHUTDOWN(log))
2596                         goto error_return;
2597
2598                 trace_xfs_log_grant_wake2(log, tic);
2599
2600                 goto redo;
2601         } else if (tic->t_flags & XLOG_TIC_IN_Q)
2602                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2603
2604         /* we've got enough space */
2605         xlog_grant_add_space(log, need_bytes);
2606 #ifdef DEBUG
2607         tail_lsn = log->l_tail_lsn;
2608         /*
2609          * Check to make sure the grant write head didn't just over lap the
2610          * tail.  If the cycles are the same, we can't be overlapping.
2611          * Otherwise, make sure that the cycles differ by exactly one and
2612          * check the byte count.
2613          */
2614         if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2615                 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2616                 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2617         }
2618 #endif
2619         trace_xfs_log_grant_exit(log, tic);
2620         xlog_verify_grant_head(log, 1);
2621         spin_unlock(&log->l_grant_lock);
2622         return 0;
2623
2624  error_return:
2625         if (tic->t_flags & XLOG_TIC_IN_Q)
2626                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2627
2628         trace_xfs_log_grant_error(log, tic);
2629
2630         /*
2631          * If we are failing, make sure the ticket doesn't have any
2632          * current reservations. We don't want to add this back when
2633          * the ticket/transaction gets cancelled.
2634          */
2635         tic->t_curr_res = 0;
2636         tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2637         spin_unlock(&log->l_grant_lock);
2638         return XFS_ERROR(EIO);
2639 }       /* xlog_grant_log_space */
2640
2641
2642 /*
2643  * Replenish the byte reservation required by moving the grant write head.
2644  *
2645  *
2646  */
2647 STATIC int
2648 xlog_regrant_write_log_space(xlog_t        *log,
2649                              xlog_ticket_t *tic)
2650 {
2651         int             free_bytes, need_bytes;
2652         xlog_ticket_t   *ntic;
2653 #ifdef DEBUG
2654         xfs_lsn_t       tail_lsn;
2655 #endif
2656
2657         tic->t_curr_res = tic->t_unit_res;
2658         xlog_tic_reset_res(tic);
2659
2660         if (tic->t_cnt > 0)
2661                 return 0;
2662
2663 #ifdef DEBUG
2664         if (log->l_flags & XLOG_ACTIVE_RECOVERY)
2665                 panic("regrant Recovery problem");
2666 #endif
2667
2668         spin_lock(&log->l_grant_lock);
2669
2670         trace_xfs_log_regrant_write_enter(log, tic);
2671
2672         if (XLOG_FORCED_SHUTDOWN(log))
2673                 goto error_return;
2674
2675         /* If there are other waiters on the queue then give them a
2676          * chance at logspace before us. Wake up the first waiters,
2677          * if we do not wake up all the waiters then go to sleep waiting
2678          * for more free space, otherwise try to get some space for
2679          * this transaction.
2680          */
2681         need_bytes = tic->t_unit_res;
2682         if ((ntic = log->l_write_headq)) {
2683                 free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2684                                              log->l_grant_write_bytes);
2685                 do {
2686                         ASSERT(ntic->t_flags & XLOG_TIC_PERM_RESERV);
2687
2688                         if (free_bytes < ntic->t_unit_res)
2689                                 break;
2690                         free_bytes -= ntic->t_unit_res;
2691                         sv_signal(&ntic->t_wait);
2692                         ntic = ntic->t_next;
2693                 } while (ntic != log->l_write_headq);
2694
2695                 if (ntic != log->l_write_headq) {
2696                         if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2697                                 xlog_ins_ticketq(&log->l_write_headq, tic);
2698
2699                         trace_xfs_log_regrant_write_sleep1(log, tic);
2700
2701                         spin_unlock(&log->l_grant_lock);
2702                         xlog_grant_push_ail(log->l_mp, need_bytes);
2703                         spin_lock(&log->l_grant_lock);
2704
2705                         XFS_STATS_INC(xs_sleep_logspace);
2706                         sv_wait(&tic->t_wait, PINOD|PLTWAIT,
2707                                 &log->l_grant_lock, s);
2708
2709                         /* If we're shutting down, this tic is already
2710                          * off the queue */
2711                         spin_lock(&log->l_grant_lock);
2712                         if (XLOG_FORCED_SHUTDOWN(log))
2713                                 goto error_return;
2714
2715                         trace_xfs_log_regrant_write_wake1(log, tic);
2716                 }
2717         }
2718
2719 redo:
2720         if (XLOG_FORCED_SHUTDOWN(log))
2721                 goto error_return;
2722
2723         free_bytes = xlog_space_left(log, log->l_grant_write_cycle,
2724                                      log->l_grant_write_bytes);
2725         if (free_bytes < need_bytes) {
2726                 if ((tic->t_flags & XLOG_TIC_IN_Q) == 0)
2727                         xlog_ins_ticketq(&log->l_write_headq, tic);
2728                 spin_unlock(&log->l_grant_lock);
2729                 xlog_grant_push_ail(log->l_mp, need_bytes);
2730                 spin_lock(&log->l_grant_lock);
2731
2732                 XFS_STATS_INC(xs_sleep_logspace);
2733                 trace_xfs_log_regrant_write_sleep2(log, tic);
2734
2735                 sv_wait(&tic->t_wait, PINOD|PLTWAIT, &log->l_grant_lock, s);
2736
2737                 /* If we're shutting down, this tic is already off the queue */
2738                 spin_lock(&log->l_grant_lock);
2739                 if (XLOG_FORCED_SHUTDOWN(log))
2740                         goto error_return;
2741
2742                 trace_xfs_log_regrant_write_wake2(log, tic);
2743                 goto redo;
2744         } else if (tic->t_flags & XLOG_TIC_IN_Q)
2745                 xlog_del_ticketq(&log->l_write_headq, tic);
2746
2747         /* we've got enough space */
2748         xlog_grant_add_space_write(log, need_bytes);
2749 #ifdef DEBUG
2750         tail_lsn = log->l_tail_lsn;
2751         if (CYCLE_LSN(tail_lsn) != log->l_grant_write_cycle) {
2752                 ASSERT(log->l_grant_write_cycle-1 == CYCLE_LSN(tail_lsn));
2753                 ASSERT(log->l_grant_write_bytes <= BBTOB(BLOCK_LSN(tail_lsn)));
2754         }
2755 #endif
2756
2757         trace_xfs_log_regrant_write_exit(log, tic);
2758
2759         xlog_verify_grant_head(log, 1);
2760         spin_unlock(&log->l_grant_lock);
2761         return 0;
2762
2763
2764  error_return:
2765         if (tic->t_flags & XLOG_TIC_IN_Q)
2766                 xlog_del_ticketq(&log->l_reserve_headq, tic);
2767
2768         trace_xfs_log_regrant_write_error(log, tic);
2769
2770         /*
2771          * If we are failing, make sure the ticket doesn't have any
2772          * current reservations. We don't want to add this back when
2773          * the ticket/transaction gets cancelled.
2774          */
2775         tic->t_curr_res = 0;
2776         tic->t_cnt = 0; /* ungrant will give back unit_res * t_cnt. */
2777         spin_unlock(&log->l_grant_lock);
2778         return XFS_ERROR(EIO);
2779 }       /* xlog_regrant_write_log_space */
2780
2781
2782 /* The first cnt-1 times through here we don't need to
2783  * move the grant write head because the permanent
2784  * reservation has reserved cnt times the unit amount.
2785  * Release part of current permanent unit reservation and
2786  * reset current reservation to be one units worth.  Also
2787  * move grant reservation head forward.
2788  */
2789 STATIC void
2790 xlog_regrant_reserve_log_space(xlog_t        *log,
2791                                xlog_ticket_t *ticket)
2792 {
2793         trace_xfs_log_regrant_reserve_enter(log, ticket);
2794
2795         if (ticket->t_cnt > 0)
2796                 ticket->t_cnt--;
2797
2798         spin_lock(&log->l_grant_lock);
2799         xlog_grant_sub_space(log, ticket->t_curr_res);
2800         ticket->t_curr_res = ticket->t_unit_res;
2801         xlog_tic_reset_res(ticket);
2802
2803         trace_xfs_log_regrant_reserve_sub(log, ticket);
2804
2805         xlog_verify_grant_head(log, 1);
2806
2807         /* just return if we still have some of the pre-reserved space */
2808         if (ticket->t_cnt > 0) {
2809                 spin_unlock(&log->l_grant_lock);
2810                 return;
2811         }
2812
2813         xlog_grant_add_space_reserve(log, ticket->t_unit_res);
2814
2815         trace_xfs_log_regrant_reserve_exit(log, ticket);
2816
2817         xlog_verify_grant_head(log, 0);
2818         spin_unlock(&log->l_grant_lock);
2819         ticket->t_curr_res = ticket->t_unit_res;
2820         xlog_tic_reset_res(ticket);
2821 }       /* xlog_regrant_reserve_log_space */
2822
2823
2824 /*
2825  * Give back the space left from a reservation.
2826  *
2827  * All the information we need to make a correct determination of space left
2828  * is present.  For non-permanent reservations, things are quite easy.  The
2829  * count should have been decremented to zero.  We only need to deal with the
2830  * space remaining in the current reservation part of the ticket.  If the
2831  * ticket contains a permanent reservation, there may be left over space which
2832  * needs to be released.  A count of N means that N-1 refills of the current
2833  * reservation can be done before we need to ask for more space.  The first
2834  * one goes to fill up the first current reservation.  Once we run out of
2835  * space, the count will stay at zero and the only space remaining will be
2836  * in the current reservation field.
2837  */
2838 STATIC void
2839 xlog_ungrant_log_space(xlog_t        *log,
2840                        xlog_ticket_t *ticket)
2841 {
2842         if (ticket->t_cnt > 0)
2843                 ticket->t_cnt--;
2844
2845         spin_lock(&log->l_grant_lock);
2846         trace_xfs_log_ungrant_enter(log, ticket);
2847
2848         xlog_grant_sub_space(log, ticket->t_curr_res);
2849
2850         trace_xfs_log_ungrant_sub(log, ticket);
2851
2852         /* If this is a permanent reservation ticket, we may be able to free
2853          * up more space based on the remaining count.
2854          */
2855         if (ticket->t_cnt > 0) {
2856                 ASSERT(ticket->t_flags & XLOG_TIC_PERM_RESERV);
2857                 xlog_grant_sub_space(log, ticket->t_unit_res*ticket->t_cnt);
2858         }
2859
2860         trace_xfs_log_ungrant_exit(log, ticket);
2861
2862         xlog_verify_grant_head(log, 1);
2863         spin_unlock(&log->l_grant_lock);
2864         xfs_log_move_tail(log->l_mp, 1);
2865 }       /* xlog_ungrant_log_space */
2866
2867
2868 /*
2869  * Flush iclog to disk if this is the last reference to the given iclog and
2870  * the WANT_SYNC bit is set.
2871  *
2872  * When this function is entered, the iclog is not necessarily in the
2873  * WANT_SYNC state.  It may be sitting around waiting to get filled.
2874  *
2875  *
2876  */
2877 STATIC int
2878 xlog_state_release_iclog(
2879         xlog_t          *log,
2880         xlog_in_core_t  *iclog)
2881 {
2882         int             sync = 0;       /* do we sync? */
2883
2884         if (iclog->ic_state & XLOG_STATE_IOERROR)
2885                 return XFS_ERROR(EIO);
2886
2887         ASSERT(atomic_read(&iclog->ic_refcnt) > 0);
2888         if (!atomic_dec_and_lock(&iclog->ic_refcnt, &log->l_icloglock))
2889                 return 0;
2890
2891         if (iclog->ic_state & XLOG_STATE_IOERROR) {
2892                 spin_unlock(&log->l_icloglock);
2893                 return XFS_ERROR(EIO);
2894         }
2895         ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE ||
2896                iclog->ic_state == XLOG_STATE_WANT_SYNC);
2897
2898         if (iclog->ic_state == XLOG_STATE_WANT_SYNC) {
2899                 /* update tail before writing to iclog */
2900                 xlog_assign_tail_lsn(log->l_mp);
2901                 sync++;
2902                 iclog->ic_state = XLOG_STATE_SYNCING;
2903                 iclog->ic_header.h_tail_lsn = cpu_to_be64(log->l_tail_lsn);
2904                 xlog_verify_tail_lsn(log, iclog, log->l_tail_lsn);
2905                 /* cycle incremented when incrementing curr_block */
2906         }
2907         spin_unlock(&log->l_icloglock);
2908
2909         /*
2910          * We let the log lock go, so it's possible that we hit a log I/O
2911          * error or some other SHUTDOWN condition that marks the iclog
2912          * as XLOG_STATE_IOERROR before the bwrite. However, we know that
2913          * this iclog has consistent data, so we ignore IOERROR
2914          * flags after this point.
2915          */
2916         if (sync)
2917                 return xlog_sync(log, iclog);
2918         return 0;
2919 }       /* xlog_state_release_iclog */
2920
2921
2922 /*
2923  * This routine will mark the current iclog in the ring as WANT_SYNC
2924  * and move the current iclog pointer to the next iclog in the ring.
2925  * When this routine is called from xlog_state_get_iclog_space(), the
2926  * exact size of the iclog has not yet been determined.  All we know is
2927  * that every data block.  We have run out of space in this log record.
2928  */
2929 STATIC void
2930 xlog_state_switch_iclogs(xlog_t         *log,
2931                          xlog_in_core_t *iclog,
2932                          int            eventual_size)
2933 {
2934         ASSERT(iclog->ic_state == XLOG_STATE_ACTIVE);
2935         if (!eventual_size)
2936                 eventual_size = iclog->ic_offset;
2937         iclog->ic_state = XLOG_STATE_WANT_SYNC;
2938         iclog->ic_header.h_prev_block = cpu_to_be32(log->l_prev_block);
2939         log->l_prev_block = log->l_curr_block;
2940         log->l_prev_cycle = log->l_curr_cycle;
2941
2942         /* roll log?: ic_offset changed later */
2943         log->l_curr_block += BTOBB(eventual_size)+BTOBB(log->l_iclog_hsize);
2944
2945         /* Round up to next log-sunit */
2946         if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
2947             log->l_mp->m_sb.sb_logsunit > 1) {
2948                 __uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
2949                 log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
2950         }
2951
2952         if (log->l_curr_block >= log->l_logBBsize) {
2953                 log->l_curr_cycle++;
2954                 if (log->l_curr_cycle == XLOG_HEADER_MAGIC_NUM)
2955                         log->l_curr_cycle++;
2956                 log->l_curr_block -= log->l_logBBsize;
2957                 ASSERT(log->l_curr_block >= 0);
2958         }
2959         ASSERT(iclog == log->l_iclog);
2960         log->l_iclog = iclog->ic_next;
2961 }       /* xlog_state_switch_iclogs */
2962
2963 /*
2964  * Write out all data in the in-core log as of this exact moment in time.
2965  *
2966  * Data may be written to the in-core log during this call.  However,
2967  * we don't guarantee this data will be written out.  A change from past
2968  * implementation means this routine will *not* write out zero length LRs.
2969  *
2970  * Basically, we try and perform an intelligent scan of the in-core logs.
2971  * If we determine there is no flushable data, we just return.  There is no
2972  * flushable data if:
2973  *
2974  *      1. the current iclog is active and has no data; the previous iclog
2975  *              is in the active or dirty state.
2976  *      2. the current iclog is drity, and the previous iclog is in the
2977  *              active or dirty state.
2978  *
2979  * We may sleep if:
2980  *
2981  *      1. the current iclog is not in the active nor dirty state.
2982  *      2. the current iclog dirty, and the previous iclog is not in the
2983  *              active nor dirty state.
2984  *      3. the current iclog is active, and there is another thread writing
2985  *              to this particular iclog.
2986  *      4. a) the current iclog is active and has no other writers
2987  *         b) when we return from flushing out this iclog, it is still
2988  *              not in the active nor dirty state.
2989  */
2990 int
2991 _xfs_log_force(
2992         struct xfs_mount        *mp,
2993         uint                    flags,
2994         int                     *log_flushed)
2995 {
2996         struct log              *log = mp->m_log;
2997         struct xlog_in_core     *iclog;
2998         xfs_lsn_t               lsn;
2999
3000         XFS_STATS_INC(xs_log_force);
3001
3002         spin_lock(&log->l_icloglock);
3003
3004         iclog = log->l_iclog;
3005         if (iclog->ic_state & XLOG_STATE_IOERROR) {
3006                 spin_unlock(&log->l_icloglock);
3007                 return XFS_ERROR(EIO);
3008         }
3009
3010         /* If the head iclog is not active nor dirty, we just attach
3011          * ourselves to the head and go to sleep.
3012          */
3013         if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3014             iclog->ic_state == XLOG_STATE_DIRTY) {
3015                 /*
3016                  * If the head is dirty or (active and empty), then
3017                  * we need to look at the previous iclog.  If the previous
3018                  * iclog is active or dirty we are done.  There is nothing
3019                  * to sync out.  Otherwise, we attach ourselves to the
3020                  * previous iclog and go to sleep.
3021                  */
3022                 if (iclog->ic_state == XLOG_STATE_DIRTY ||
3023                     (atomic_read(&iclog->ic_refcnt) == 0
3024                      && iclog->ic_offset == 0)) {
3025                         iclog = iclog->ic_prev;
3026                         if (iclog->ic_state == XLOG_STATE_ACTIVE ||
3027                             iclog->ic_state == XLOG_STATE_DIRTY)
3028                                 goto no_sleep;
3029                         else
3030                                 goto maybe_sleep;
3031                 } else {
3032                         if (atomic_read(&iclog->ic_refcnt) == 0) {
3033                                 /* We are the only one with access to this
3034                                  * iclog.  Flush it out now.  There should
3035                                  * be a roundoff of zero to show that someone
3036                                  * has already taken care of the roundoff from
3037                                  * the previous sync.
3038                                  */
3039                                 atomic_inc(&iclog->ic_refcnt);
3040                                 lsn = be64_to_cpu(iclog->ic_header.h_lsn);
3041                                 xlog_state_switch_iclogs(log, iclog, 0);
3042                                 spin_unlock(&log->l_icloglock);
3043
3044                                 if (xlog_state_release_iclog(log, iclog))
3045                                         return XFS_ERROR(EIO);
3046
3047                                 if (log_flushed)
3048                                         *log_flushed = 1;
3049                                 spin_lock(&log->l_icloglock);
3050                                 if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn &&
3051                                     iclog->ic_state != XLOG_STATE_DIRTY)
3052                                         goto maybe_sleep;
3053                                 else
3054                                         goto no_sleep;
3055                         } else {
3056                                 /* Someone else is writing to this iclog.
3057                                  * Use its call to flush out the data.  However,
3058                                  * the other thread may not force out this LR,
3059                                  * so we mark it WANT_SYNC.
3060                                  */
3061                                 xlog_state_switch_iclogs(log, iclog, 0);
3062                                 goto maybe_sleep;
3063                         }
3064                 }
3065         }
3066
3067         /* By the time we come around again, the iclog could've been filled
3068          * which would give it another lsn.  If we have a new lsn, just
3069          * return because the relevant data has been flushed.
3070          */
3071 maybe_sleep:
3072         if (flags & XFS_LOG_SYNC) {
3073                 /*
3074                  * We must check if we're shutting down here, before
3075                  * we wait, while we're holding the l_icloglock.
3076                  * Then we check again after waking up, in case our
3077                  * sleep was disturbed by a bad news.
3078                  */
3079                 if (iclog->ic_state & XLOG_STATE_IOERROR) {
3080                         spin_unlock(&log->l_icloglock);
3081                         return XFS_ERROR(EIO);
3082                 }
3083                 XFS_STATS_INC(xs_log_force_sleep);
3084                 sv_wait(&iclog->ic_force_wait, PINOD, &log->l_icloglock, s);
3085                 /*
3086                  * No need to grab the log lock here since we're
3087                  * only deciding whether or not to return EIO
3088                  * and the memory read should be atomic.
3089                  */
3090                 if (iclog->ic_state & XLOG_STATE_IOERROR)
3091                         return XFS_ERROR(EIO);
3092                 if (log_flushed)
3093                         *log_flushed = 1;
3094         } else {
3095
3096 no_sleep:
3097                 spin_unlock(&log->l_icloglock);
3098         }
3099         return 0;
3100 }
3101
3102 /*
3103  * Wrapper for _xfs_log_force(), to be used when caller doesn't care
3104  * about errors or whether the log was flushed or not. This is the normal
3105  * interface to use when trying to unpin items or move the log forward.
3106  */
3107 void
3108 xfs_log_force(
3109         xfs_mount_t     *mp,
3110         uint            flags)
3111 {
3112         int     error;
3113
3114         error = _xfs_log_force(mp, flags, NULL);
3115         if (error) {
3116                 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3117                         "error %d returned.", error);
3118         }
3119 }
3120
3121 /*
3122  * Force the in-core log to disk for a specific LSN.
3123  *
3124  * Find in-core log with lsn.
3125  *      If it is in the DIRTY state, just return.
3126  *      If it is in the ACTIVE state, move the in-core log into the WANT_SYNC
3127  *              state and go to sleep or return.
3128  *      If it is in any other state, go to sleep or return.
3129  *
3130  * Synchronous forces are implemented with a signal variable. All callers
3131  * to force a given lsn to disk will wait on a the sv attached to the
3132  * specific in-core log.  When given in-core log finally completes its
3133  * write to disk, that thread will wake up all threads waiting on the
3134  * sv.
3135  */
3136 int
3137 _xfs_log_force_lsn(
3138         struct xfs_mount        *mp,
3139         xfs_lsn_t               lsn,
3140         uint                    flags,
3141         int                     *log_flushed)
3142 {
3143         struct log              *log = mp->m_log;
3144         struct xlog_in_core     *iclog;
3145         int                     already_slept = 0;
3146
3147         ASSERT(lsn != 0);
3148
3149         XFS_STATS_INC(xs_log_force);
3150
3151 try_again:
3152         spin_lock(&log->l_icloglock);
3153         iclog = log->l_iclog;
3154         if (iclog->ic_state & XLOG_STATE_IOERROR) {
3155                 spin_unlock(&log->l_icloglock);
3156                 return XFS_ERROR(EIO);
3157         }
3158
3159         do {
3160                 if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) {
3161                         iclog = iclog->ic_next;
3162                         continue;
3163                 }
3164
3165                 if (iclog->ic_state == XLOG_STATE_DIRTY) {
3166                         spin_unlock(&log->l_icloglock);
3167                         return 0;
3168                 }
3169
3170                 if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3171                         /*
3172                          * We sleep here if we haven't already slept (e.g.
3173                          * this is the first time we've looked at the correct
3174                          * iclog buf) and the buffer before us is going to
3175                          * be sync'ed. The reason for this is that if we
3176                          * are doing sync transactions here, by waiting for
3177                          * the previous I/O to complete, we can allow a few
3178                          * more transactions into this iclog before we close
3179                          * it down.
3180                          *
3181                          * Otherwise, we mark the buffer WANT_SYNC, and bump
3182                          * up the refcnt so we can release the log (which
3183                          * drops the ref count).  The state switch keeps new
3184                          * transaction commits from using this buffer.  When
3185                          * the current commits finish writing into the buffer,
3186                          * the refcount will drop to zero and the buffer will
3187                          * go out then.
3188                          */
3189                         if (!already_slept &&
3190                             (iclog->ic_prev->ic_state &
3191                              (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) {
3192                                 ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR));
3193
3194                                 XFS_STATS_INC(xs_log_force_sleep);
3195
3196                                 sv_wait(&iclog->ic_prev->ic_write_wait,
3197                                         PSWP, &log->l_icloglock, s);
3198                                 if (log_flushed)
3199                                         *log_flushed = 1;
3200                                 already_slept = 1;
3201                                 goto try_again;
3202                         }
3203                         atomic_inc(&iclog->ic_refcnt);
3204                         xlog_state_switch_iclogs(log, iclog, 0);
3205                         spin_unlock(&log->l_icloglock);
3206                         if (xlog_state_release_iclog(log, iclog))
3207                                 return XFS_ERROR(EIO);
3208                         if (log_flushed)
3209                                 *log_flushed = 1;
3210                         spin_lock(&log->l_icloglock);
3211                 }
3212
3213                 if ((flags & XFS_LOG_SYNC) && /* sleep */
3214                     !(iclog->ic_state &
3215                       (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) {
3216                         /*
3217                          * Don't wait on completion if we know that we've
3218                          * gotten a log write error.
3219                          */
3220                         if (iclog->ic_state & XLOG_STATE_IOERROR) {
3221                                 spin_unlock(&log->l_icloglock);
3222                                 return XFS_ERROR(EIO);
3223                         }
3224                         XFS_STATS_INC(xs_log_force_sleep);
3225                         sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s);
3226                         /*
3227                          * No need to grab the log lock here since we're
3228                          * only deciding whether or not to return EIO
3229                          * and the memory read should be atomic.
3230                          */
3231                         if (iclog->ic_state & XLOG_STATE_IOERROR)
3232                                 return XFS_ERROR(EIO);
3233
3234                         if (log_flushed)
3235                                 *log_flushed = 1;
3236                 } else {                /* just return */
3237                         spin_unlock(&log->l_icloglock);
3238                 }
3239
3240                 return 0;
3241         } while (iclog != log->l_iclog);
3242
3243         spin_unlock(&log->l_icloglock);
3244         return 0;
3245 }
3246
3247 /*
3248  * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care
3249  * about errors or whether the log was flushed or not. This is the normal
3250  * interface to use when trying to unpin items or move the log forward.
3251  */
3252 void
3253 xfs_log_force_lsn(
3254         xfs_mount_t     *mp,
3255         xfs_lsn_t       lsn,
3256         uint            flags)
3257 {
3258         int     error;
3259
3260         error = _xfs_log_force_lsn(mp, lsn, flags, NULL);
3261         if (error) {
3262                 xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: "
3263                         "error %d returned.", error);
3264         }
3265 }
3266
3267 /*
3268  * Called when we want to mark the current iclog as being ready to sync to
3269  * disk.
3270  */
3271 STATIC void
3272 xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog)
3273 {
3274         assert_spin_locked(&log->l_icloglock);
3275
3276         if (iclog->ic_state == XLOG_STATE_ACTIVE) {
3277                 xlog_state_switch_iclogs(log, iclog, 0);
3278         } else {
3279                 ASSERT(iclog->ic_state &
3280                         (XLOG_STATE_WANT_SYNC|XLOG_STATE_IOERROR));
3281         }
3282 }
3283
3284
3285 /*****************************************************************************
3286  *
3287  *              TICKET functions
3288  *
3289  *****************************************************************************
3290  */
3291
3292 /*
3293  * Free a used ticket when its refcount falls to zero.
3294  */
3295 void
3296 xfs_log_ticket_put(
3297         xlog_ticket_t   *ticket)
3298 {
3299         ASSERT(atomic_read(&ticket->t_ref) > 0);
3300         if (atomic_dec_and_test(&ticket->t_ref)) {
3301                 sv_destroy(&ticket->t_wait);
3302                 kmem_zone_free(xfs_log_ticket_zone, ticket);
3303         }
3304 }
3305
3306 xlog_ticket_t *
3307 xfs_log_ticket_get(
3308         xlog_ticket_t   *ticket)
3309 {
3310         ASSERT(atomic_read(&ticket->t_ref) > 0);
3311         atomic_inc(&ticket->t_ref);
3312         return ticket;
3313 }
3314
3315 /*
3316  * Allocate and initialise a new log ticket.
3317  */
3318 STATIC xlog_ticket_t *
3319 xlog_ticket_alloc(
3320         struct log      *log,
3321         int             unit_bytes,
3322         int             cnt,
3323         char            client,
3324         uint            xflags,
3325         int             alloc_flags)
3326 {
3327         struct xlog_ticket *tic;
3328         uint            num_headers;
3329         int             iclog_space;
3330
3331         tic = kmem_zone_zalloc(xfs_log_ticket_zone, alloc_flags);
3332         if (!tic)
3333                 return NULL;
3334
3335         /*
3336          * Permanent reservations have up to 'cnt'-1 active log operations
3337          * in the log.  A unit in this case is the amount of space for one
3338          * of these log operations.  Normal reservations have a cnt of 1
3339          * and their unit amount is the total amount of space required.
3340          *
3341          * The following lines of code account for non-transaction data
3342          * which occupy space in the on-disk log.
3343          *
3344          * Normal form of a transaction is:
3345          * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
3346          * and then there are LR hdrs, split-recs and roundoff at end of syncs.
3347          *
3348          * We need to account for all the leadup data and trailer data
3349          * around the transaction data.
3350          * And then we need to account for the worst case in terms of using
3351          * more space.
3352          * The worst case will happen if:
3353          * - the placement of the transaction happens to be such that the
3354          *   roundoff is at its maximum
3355          * - the transaction data is synced before the commit record is synced
3356          *   i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
3357          *   Therefore the commit record is in its own Log Record.
3358          *   This can happen as the commit record is called with its
3359          *   own region to xlog_write().
3360          *   This then means that in the worst case, roundoff can happen for
3361          *   the commit-rec as well.
3362          *   The commit-rec is smaller than padding in this scenario and so it is
3363          *   not added separately.
3364          */
3365
3366         /* for trans header */
3367         unit_bytes += sizeof(xlog_op_header_t);
3368         unit_bytes += sizeof(xfs_trans_header_t);
3369
3370         /* for start-rec */
3371         unit_bytes += sizeof(xlog_op_header_t);
3372
3373         /*
3374          * for LR headers - the space for data in an iclog is the size minus
3375          * the space used for the headers. If we use the iclog size, then we
3376          * undercalculate the number of headers required.
3377          *
3378          * Furthermore - the addition of op headers for split-recs might
3379          * increase the space required enough to require more log and op
3380          * headers, so take that into account too.
3381          *
3382          * IMPORTANT: This reservation makes the assumption that if this
3383          * transaction is the first in an iclog and hence has the LR headers
3384          * accounted to it, then the remaining space in the iclog is
3385          * exclusively for this transaction.  i.e. if the transaction is larger
3386          * than the iclog, it will be the only thing in that iclog.
3387          * Fundamentally, this means we must pass the entire log vector to
3388          * xlog_write to guarantee this.
3389          */
3390         iclog_space = log->l_iclog_size - log->l_iclog_hsize;
3391         num_headers = howmany(unit_bytes, iclog_space);
3392
3393         /* for split-recs - ophdrs added when data split over LRs */
3394         unit_bytes += sizeof(xlog_op_header_t) * num_headers;
3395
3396         /* add extra header reservations if we overrun */
3397         while (!num_headers ||
3398                howmany(unit_bytes, iclog_space) > num_headers) {
3399                 unit_bytes += sizeof(xlog_op_header_t);
3400                 num_headers++;
3401         }
3402         unit_bytes += log->l_iclog_hsize * num_headers;
3403
3404         /* for commit-rec LR header - note: padding will subsume the ophdr */
3405         unit_bytes += log->l_iclog_hsize;
3406
3407         /* for roundoff padding for transaction data and one for commit record */
3408         if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
3409             log->l_mp->m_sb.sb_logsunit > 1) {
3410                 /* log su roundoff */
3411                 unit_bytes += 2*log->l_mp->m_sb.sb_logsunit;
3412         } else {
3413                 /* BB roundoff */
3414                 unit_bytes += 2*BBSIZE;
3415         }
3416
3417         atomic_set(&tic->t_ref, 1);
3418         tic->t_unit_res         = unit_bytes;
3419         tic->t_curr_res         = unit_bytes;
3420         tic->t_cnt              = cnt;
3421         tic->t_ocnt             = cnt;
3422         tic->t_tid              = random32();
3423         tic->t_clientid         = client;
3424         tic->t_flags            = XLOG_TIC_INITED;
3425         tic->t_trans_type       = 0;
3426         if (xflags & XFS_LOG_PERM_RESERV)
3427                 tic->t_flags |= XLOG_TIC_PERM_RESERV;
3428         sv_init(&tic->t_wait, SV_DEFAULT, "logtick");
3429
3430         xlog_tic_reset_res(tic);
3431
3432         return tic;
3433 }
3434
3435
3436 /******************************************************************************
3437  *
3438  *              Log debug routines
3439  *
3440  ******************************************************************************
3441  */
3442 #if defined(DEBUG)
3443 /*
3444  * Make sure that the destination ptr is within the valid data region of
3445  * one of the iclogs.  This uses backup pointers stored in a different
3446  * part of the log in case we trash the log structure.
3447  */
3448 void
3449 xlog_verify_dest_ptr(
3450         struct log      *log,
3451         char            *ptr)
3452 {
3453         int i;
3454         int good_ptr = 0;
3455
3456         for (i = 0; i < log->l_iclog_bufs; i++) {
3457                 if (ptr >= log->l_iclog_bak[i] &&
3458                     ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
3459                         good_ptr++;
3460         }
3461
3462         if (!good_ptr)
3463                 xlog_panic("xlog_verify_dest_ptr: invalid ptr");
3464 }
3465
3466 STATIC void
3467 xlog_verify_grant_head(xlog_t *log, int equals)
3468 {
3469     if (log->l_grant_reserve_cycle == log->l_grant_write_cycle) {
3470         if (equals)
3471             ASSERT(log->l_grant_reserve_bytes >= log->l_grant_write_bytes);
3472         else
3473             ASSERT(log->l_grant_reserve_bytes > log->l_grant_write_bytes);
3474     } else {
3475         ASSERT(log->l_grant_reserve_cycle-1 == log->l_grant_write_cycle);
3476         ASSERT(log->l_grant_write_bytes >= log->l_grant_reserve_bytes);
3477     }
3478 }       /* xlog_verify_grant_head */
3479
3480 /* check if it will fit */
3481 STATIC void
3482 xlog_verify_tail_lsn(xlog_t         *log,
3483                      xlog_in_core_t *iclog,
3484                      xfs_lsn_t      tail_lsn)
3485 {
3486     int blocks;
3487
3488     if (CYCLE_LSN(tail_lsn) == log->l_prev_cycle) {
3489         blocks =
3490             log->l_logBBsize - (log->l_prev_block - BLOCK_LSN(tail_lsn));
3491         if (blocks < BTOBB(iclog->ic_offset)+BTOBB(log->l_iclog_hsize))
3492             xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3493     } else {
3494         ASSERT(CYCLE_LSN(tail_lsn)+1 == log->l_prev_cycle);
3495
3496         if (BLOCK_LSN(tail_lsn) == log->l_prev_block)
3497             xlog_panic("xlog_verify_tail_lsn: tail wrapped");
3498
3499         blocks = BLOCK_LSN(tail_lsn) - log->l_prev_block;
3500         if (blocks < BTOBB(iclog->ic_offset) + 1)
3501             xlog_panic("xlog_verify_tail_lsn: ran out of log space");
3502     }
3503 }       /* xlog_verify_tail_lsn */
3504
3505 /*
3506  * Perform a number of checks on the iclog before writing to disk.
3507  *
3508  * 1. Make sure the iclogs are still circular
3509  * 2. Make sure we have a good magic number
3510  * 3. Make sure we don't have magic numbers in the data
3511  * 4. Check fields of each log operation header for:
3512  *      A. Valid client identifier
3513  *      B. tid ptr value falls in valid ptr space (user space code)
3514  *      C. Length in log record header is correct according to the
3515  *              individual operation headers within record.
3516  * 5. When a bwrite will occur within 5 blocks of the front of the physical
3517  *      log, check the preceding blocks of the physical log to make sure all
3518  *      the cycle numbers agree with the current cycle number.
3519  */
3520 STATIC void
3521 xlog_verify_iclog(xlog_t         *log,
3522                   xlog_in_core_t *iclog,
3523                   int            count,
3524                   boolean_t      syncing)
3525 {
3526         xlog_op_header_t        *ophead;
3527         xlog_in_core_t          *icptr;
3528         xlog_in_core_2_t        *xhdr;
3529         xfs_caddr_t             ptr;
3530         xfs_caddr_t             base_ptr;
3531         __psint_t               field_offset;
3532         __uint8_t               clientid;
3533         int                     len, i, j, k, op_len;
3534         int                     idx;
3535
3536         /* check validity of iclog pointers */
3537         spin_lock(&log->l_icloglock);
3538         icptr = log->l_iclog;
3539         for (i=0; i < log->l_iclog_bufs; i++) {
3540                 if (icptr == NULL)
3541                         xlog_panic("xlog_verify_iclog: invalid ptr");
3542                 icptr = icptr->ic_next;
3543         }
3544         if (icptr != log->l_iclog)
3545                 xlog_panic("xlog_verify_iclog: corrupt iclog ring");
3546         spin_unlock(&log->l_icloglock);
3547
3548         /* check log magic numbers */
3549         if (be32_to_cpu(iclog->ic_header.h_magicno) != XLOG_HEADER_MAGIC_NUM)
3550                 xlog_panic("xlog_verify_iclog: invalid magic num");
3551
3552         ptr = (xfs_caddr_t) &iclog->ic_header;
3553         for (ptr += BBSIZE; ptr < ((xfs_caddr_t)&iclog->ic_header) + count;
3554              ptr += BBSIZE) {
3555                 if (be32_to_cpu(*(__be32 *)ptr) == XLOG_HEADER_MAGIC_NUM)
3556                         xlog_panic("xlog_verify_iclog: unexpected magic num");
3557         }
3558
3559         /* check fields */
3560         len = be32_to_cpu(iclog->ic_header.h_num_logops);
3561         ptr = iclog->ic_datap;
3562         base_ptr = ptr;
3563         ophead = (xlog_op_header_t *)ptr;
3564         xhdr = iclog->ic_data;
3565         for (i = 0; i < len; i++) {
3566                 ophead = (xlog_op_header_t *)ptr;
3567
3568                 /* clientid is only 1 byte */
3569                 field_offset = (__psint_t)
3570                                ((xfs_caddr_t)&(ophead->oh_clientid) - base_ptr);
3571                 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3572                         clientid = ophead->oh_clientid;
3573                 } else {
3574                         idx = BTOBBT((xfs_caddr_t)&(ophead->oh_clientid) - iclog->ic_datap);
3575                         if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3576                                 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3577                                 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3578                                 clientid = xlog_get_client_id(
3579                                         xhdr[j].hic_xheader.xh_cycle_data[k]);
3580                         } else {
3581                                 clientid = xlog_get_client_id(
3582                                         iclog->ic_header.h_cycle_data[idx]);
3583                         }
3584                 }
3585                 if (clientid != XFS_TRANSACTION && clientid != XFS_LOG)
3586                         cmn_err(CE_WARN, "xlog_verify_iclog: "
3587                                 "invalid clientid %d op 0x%p offset 0x%lx",
3588                                 clientid, ophead, (unsigned long)field_offset);
3589
3590                 /* check length */
3591                 field_offset = (__psint_t)
3592                                ((xfs_caddr_t)&(ophead->oh_len) - base_ptr);
3593                 if (syncing == B_FALSE || (field_offset & 0x1ff)) {
3594                         op_len = be32_to_cpu(ophead->oh_len);
3595                 } else {
3596                         idx = BTOBBT((__psint_t)&ophead->oh_len -
3597                                     (__psint_t)iclog->ic_datap);
3598                         if (idx >= (XLOG_HEADER_CYCLE_SIZE / BBSIZE)) {
3599                                 j = idx / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3600                                 k = idx % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3601                                 op_len = be32_to_cpu(xhdr[j].hic_xheader.xh_cycle_data[k]);
3602                         } else {
3603                                 op_len = be32_to_cpu(iclog->ic_header.h_cycle_data[idx]);
3604                         }
3605                 }
3606                 ptr += sizeof(xlog_op_header_t) + op_len;
3607         }
3608 }       /* xlog_verify_iclog */
3609 #endif
3610
3611 /*
3612  * Mark all iclogs IOERROR. l_icloglock is held by the caller.
3613  */
3614 STATIC int
3615 xlog_state_ioerror(
3616         xlog_t  *log)
3617 {
3618         xlog_in_core_t  *iclog, *ic;
3619
3620         iclog = log->l_iclog;
3621         if (! (iclog->ic_state & XLOG_STATE_IOERROR)) {
3622                 /*
3623                  * Mark all the incore logs IOERROR.
3624                  * From now on, no log flushes will result.
3625                  */
3626                 ic = iclog;
3627                 do {
3628                         ic->ic_state = XLOG_STATE_IOERROR;
3629                         ic = ic->ic_next;
3630                 } while (ic != iclog);
3631                 return 0;
3632         }
3633         /*
3634          * Return non-zero, if state transition has already happened.
3635          */
3636         return 1;
3637 }
3638
3639 /*
3640  * This is called from xfs_force_shutdown, when we're forcibly
3641  * shutting down the filesystem, typically because of an IO error.
3642  * Our main objectives here are to make sure that:
3643  *      a. the filesystem gets marked 'SHUTDOWN' for all interested
3644  *         parties to find out, 'atomically'.
3645  *      b. those who're sleeping on log reservations, pinned objects and
3646  *          other resources get woken up, and be told the bad news.
3647  *      c. nothing new gets queued up after (a) and (b) are done.
3648  *      d. if !logerror, flush the iclogs to disk, then seal them off
3649  *         for business.
3650  */
3651 int
3652 xfs_log_force_umount(
3653         struct xfs_mount        *mp,
3654         int                     logerror)
3655 {
3656         xlog_ticket_t   *tic;
3657         xlog_t          *log;
3658         int             retval;
3659
3660         log = mp->m_log;
3661
3662         /*
3663          * If this happens during log recovery, don't worry about
3664          * locking; the log isn't open for business yet.
3665          */
3666         if (!log ||
3667             log->l_flags & XLOG_ACTIVE_RECOVERY) {
3668                 mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3669                 if (mp->m_sb_bp)
3670                         XFS_BUF_DONE(mp->m_sb_bp);
3671                 return 0;
3672         }
3673
3674         /*
3675          * Somebody could've already done the hard work for us.
3676          * No need to get locks for this.
3677          */
3678         if (logerror && log->l_iclog->ic_state & XLOG_STATE_IOERROR) {
3679                 ASSERT(XLOG_FORCED_SHUTDOWN(log));
3680                 return 1;
3681         }
3682         retval = 0;
3683         /*
3684          * We must hold both the GRANT lock and the LOG lock,
3685          * before we mark the filesystem SHUTDOWN and wake
3686          * everybody up to tell the bad news.
3687          */
3688         spin_lock(&log->l_icloglock);
3689         spin_lock(&log->l_grant_lock);
3690         mp->m_flags |= XFS_MOUNT_FS_SHUTDOWN;
3691         if (mp->m_sb_bp)
3692                 XFS_BUF_DONE(mp->m_sb_bp);
3693
3694         /*
3695          * This flag is sort of redundant because of the mount flag, but
3696          * it's good to maintain the separation between the log and the rest
3697          * of XFS.
3698          */
3699         log->l_flags |= XLOG_IO_ERROR;
3700
3701         /*
3702          * If we hit a log error, we want to mark all the iclogs IOERROR
3703          * while we're still holding the loglock.
3704          */
3705         if (logerror)
3706                 retval = xlog_state_ioerror(log);
3707         spin_unlock(&log->l_icloglock);
3708
3709         /*
3710          * We don't want anybody waiting for log reservations
3711          * after this. That means we have to wake up everybody
3712          * queued up on reserve_headq as well as write_headq.
3713          * In addition, we make sure in xlog_{re}grant_log_space
3714          * that we don't enqueue anything once the SHUTDOWN flag
3715          * is set, and this action is protected by the GRANTLOCK.
3716          */
3717         if ((tic = log->l_reserve_headq)) {
3718                 do {
3719                         sv_signal(&tic->t_wait);
3720                         tic = tic->t_next;
3721                 } while (tic != log->l_reserve_headq);
3722         }
3723
3724         if ((tic = log->l_write_headq)) {
3725                 do {
3726                         sv_signal(&tic->t_wait);
3727                         tic = tic->t_next;
3728                 } while (tic != log->l_write_headq);
3729         }
3730         spin_unlock(&log->l_grant_lock);
3731
3732         if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) {
3733                 ASSERT(!logerror);
3734                 /*
3735                  * Force the incore logs to disk before shutting the
3736                  * log down completely.
3737                  */
3738                 _xfs_log_force(mp, XFS_LOG_SYNC, NULL);
3739
3740                 spin_lock(&log->l_icloglock);
3741                 retval = xlog_state_ioerror(log);
3742                 spin_unlock(&log->l_icloglock);
3743         }
3744         /*
3745          * Wake up everybody waiting on xfs_log_force.
3746          * Callback all log item committed functions as if the
3747          * log writes were completed.
3748          */
3749         xlog_state_do_callback(log, XFS_LI_ABORTED, NULL);
3750
3751 #ifdef XFSERRORDEBUG
3752         {
3753                 xlog_in_core_t  *iclog;
3754
3755                 spin_lock(&log->l_icloglock);
3756                 iclog = log->l_iclog;
3757                 do {
3758                         ASSERT(iclog->ic_callback == 0);
3759                         iclog = iclog->ic_next;
3760                 } while (iclog != log->l_iclog);
3761                 spin_unlock(&log->l_icloglock);
3762         }
3763 #endif
3764         /* return non-zero if log IOERROR transition had already happened */
3765         return retval;
3766 }
3767
3768 STATIC int
3769 xlog_iclogs_empty(xlog_t *log)
3770 {
3771         xlog_in_core_t  *iclog;
3772
3773         iclog = log->l_iclog;
3774         do {
3775                 /* endianness does not matter here, zero is zero in
3776                  * any language.
3777                  */
3778                 if (iclog->ic_header.h_num_logops)
3779                         return 0;
3780                 iclog = iclog->ic_next;
3781         } while (iclog != log->l_iclog);
3782         return 1;
3783 }