5d6d6b9d369d5f6cc36efa35e8a3ca2a8f79bf71
[linux-2.6-block.git] / fs / xfs / xfs_fsops.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_log.h"
22 #include "xfs_trans.h"
23 #include "xfs_sb.h"
24 #include "xfs_ag.h"
25 #include "xfs_mount.h"
26 #include "xfs_bmap_btree.h"
27 #include "xfs_alloc_btree.h"
28 #include "xfs_ialloc_btree.h"
29 #include "xfs_dinode.h"
30 #include "xfs_inode.h"
31 #include "xfs_inode_item.h"
32 #include "xfs_btree.h"
33 #include "xfs_error.h"
34 #include "xfs_alloc.h"
35 #include "xfs_ialloc.h"
36 #include "xfs_fsops.h"
37 #include "xfs_itable.h"
38 #include "xfs_trans_space.h"
39 #include "xfs_rtalloc.h"
40 #include "xfs_filestream.h"
41 #include "xfs_trace.h"
42
43 /*
44  * File system operations
45  */
46
47 int
48 xfs_fs_geometry(
49         xfs_mount_t             *mp,
50         xfs_fsop_geom_t         *geo,
51         int                     new_version)
52 {
53
54         memset(geo, 0, sizeof(*geo));
55
56         geo->blocksize = mp->m_sb.sb_blocksize;
57         geo->rtextsize = mp->m_sb.sb_rextsize;
58         geo->agblocks = mp->m_sb.sb_agblocks;
59         geo->agcount = mp->m_sb.sb_agcount;
60         geo->logblocks = mp->m_sb.sb_logblocks;
61         geo->sectsize = mp->m_sb.sb_sectsize;
62         geo->inodesize = mp->m_sb.sb_inodesize;
63         geo->imaxpct = mp->m_sb.sb_imax_pct;
64         geo->datablocks = mp->m_sb.sb_dblocks;
65         geo->rtblocks = mp->m_sb.sb_rblocks;
66         geo->rtextents = mp->m_sb.sb_rextents;
67         geo->logstart = mp->m_sb.sb_logstart;
68         ASSERT(sizeof(geo->uuid)==sizeof(mp->m_sb.sb_uuid));
69         memcpy(geo->uuid, &mp->m_sb.sb_uuid, sizeof(mp->m_sb.sb_uuid));
70         if (new_version >= 2) {
71                 geo->sunit = mp->m_sb.sb_unit;
72                 geo->swidth = mp->m_sb.sb_width;
73         }
74         if (new_version >= 3) {
75                 geo->version = XFS_FSOP_GEOM_VERSION;
76                 geo->flags =
77                         (xfs_sb_version_hasattr(&mp->m_sb) ?
78                                 XFS_FSOP_GEOM_FLAGS_ATTR : 0) |
79                         (xfs_sb_version_hasnlink(&mp->m_sb) ?
80                                 XFS_FSOP_GEOM_FLAGS_NLINK : 0) |
81                         (xfs_sb_version_hasquota(&mp->m_sb) ?
82                                 XFS_FSOP_GEOM_FLAGS_QUOTA : 0) |
83                         (xfs_sb_version_hasalign(&mp->m_sb) ?
84                                 XFS_FSOP_GEOM_FLAGS_IALIGN : 0) |
85                         (xfs_sb_version_hasdalign(&mp->m_sb) ?
86                                 XFS_FSOP_GEOM_FLAGS_DALIGN : 0) |
87                         (xfs_sb_version_hasshared(&mp->m_sb) ?
88                                 XFS_FSOP_GEOM_FLAGS_SHARED : 0) |
89                         (xfs_sb_version_hasextflgbit(&mp->m_sb) ?
90                                 XFS_FSOP_GEOM_FLAGS_EXTFLG : 0) |
91                         (xfs_sb_version_hasdirv2(&mp->m_sb) ?
92                                 XFS_FSOP_GEOM_FLAGS_DIRV2 : 0) |
93                         (xfs_sb_version_hassector(&mp->m_sb) ?
94                                 XFS_FSOP_GEOM_FLAGS_SECTOR : 0) |
95                         (xfs_sb_version_hasasciici(&mp->m_sb) ?
96                                 XFS_FSOP_GEOM_FLAGS_DIRV2CI : 0) |
97                         (xfs_sb_version_haslazysbcount(&mp->m_sb) ?
98                                 XFS_FSOP_GEOM_FLAGS_LAZYSB : 0) |
99                         (xfs_sb_version_hasattr2(&mp->m_sb) ?
100                                 XFS_FSOP_GEOM_FLAGS_ATTR2 : 0) |
101                         (xfs_sb_version_hasprojid32bit(&mp->m_sb) ?
102                                 XFS_FSOP_GEOM_FLAGS_PROJID32 : 0);
103                 geo->logsectsize = xfs_sb_version_hassector(&mp->m_sb) ?
104                                 mp->m_sb.sb_logsectsize : BBSIZE;
105                 geo->rtsectsize = mp->m_sb.sb_blocksize;
106                 geo->dirblocksize = mp->m_dirblksize;
107         }
108         if (new_version >= 4) {
109                 geo->flags |=
110                         (xfs_sb_version_haslogv2(&mp->m_sb) ?
111                                 XFS_FSOP_GEOM_FLAGS_LOGV2 : 0);
112                 geo->logsunit = mp->m_sb.sb_logsunit;
113         }
114         return 0;
115 }
116
117 static struct xfs_buf *
118 xfs_growfs_get_hdr_buf(
119         struct xfs_mount        *mp,
120         xfs_daddr_t             blkno,
121         size_t                  numblks,
122         int                     flags)
123 {
124         struct xfs_buf          *bp;
125
126         bp = xfs_buf_get_uncached(mp->m_ddev_targp, numblks, flags);
127         if (!bp)
128                 return NULL;
129
130         xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
131         bp->b_bn = blkno;
132         bp->b_maps[0].bm_bn = blkno;
133
134         return bp;
135 }
136
137 static int
138 xfs_growfs_data_private(
139         xfs_mount_t             *mp,            /* mount point for filesystem */
140         xfs_growfs_data_t       *in)            /* growfs data input struct */
141 {
142         xfs_agf_t               *agf;
143         struct xfs_agfl         *agfl;
144         xfs_agi_t               *agi;
145         xfs_agnumber_t          agno;
146         xfs_extlen_t            agsize;
147         xfs_extlen_t            tmpsize;
148         xfs_alloc_rec_t         *arec;
149         xfs_buf_t               *bp;
150         int                     bucket;
151         int                     dpct;
152         int                     error;
153         xfs_agnumber_t          nagcount;
154         xfs_agnumber_t          nagimax = 0;
155         xfs_rfsblock_t          nb, nb_mod;
156         xfs_rfsblock_t          new;
157         xfs_rfsblock_t          nfree;
158         xfs_agnumber_t          oagcount;
159         int                     pct;
160         xfs_trans_t             *tp;
161
162         nb = in->newblocks;
163         pct = in->imaxpct;
164         if (nb < mp->m_sb.sb_dblocks || pct < 0 || pct > 100)
165                 return XFS_ERROR(EINVAL);
166         if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
167                 return error;
168         dpct = pct - mp->m_sb.sb_imax_pct;
169         bp = xfs_buf_read_uncached(mp->m_ddev_targp,
170                                 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
171                                 XFS_FSS_TO_BB(mp, 1), 0, NULL);
172         if (!bp)
173                 return EIO;
174         if (bp->b_error) {
175                 int     error = bp->b_error;
176                 xfs_buf_relse(bp);
177                 return error;
178         }
179         xfs_buf_relse(bp);
180
181         new = nb;       /* use new as a temporary here */
182         nb_mod = do_div(new, mp->m_sb.sb_agblocks);
183         nagcount = new + (nb_mod != 0);
184         if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
185                 nagcount--;
186                 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
187                 if (nb < mp->m_sb.sb_dblocks)
188                         return XFS_ERROR(EINVAL);
189         }
190         new = nb - mp->m_sb.sb_dblocks;
191         oagcount = mp->m_sb.sb_agcount;
192
193         /* allocate the new per-ag structures */
194         if (nagcount > oagcount) {
195                 error = xfs_initialize_perag(mp, nagcount, &nagimax);
196                 if (error)
197                         return error;
198         }
199
200         tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFS);
201         tp->t_flags |= XFS_TRANS_RESERVE;
202         if ((error = xfs_trans_reserve(tp, XFS_GROWFS_SPACE_RES(mp),
203                         XFS_GROWDATA_LOG_RES(mp), 0, 0, 0))) {
204                 xfs_trans_cancel(tp, 0);
205                 return error;
206         }
207
208         /*
209          * Write new AG headers to disk. Non-transactional, but written
210          * synchronously so they are completed prior to the growfs transaction
211          * being logged.
212          */
213         nfree = 0;
214         for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) {
215                 /*
216                  * AG freespace header block
217                  */
218                 bp = xfs_growfs_get_hdr_buf(mp,
219                                 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
220                                 XFS_FSS_TO_BB(mp, 1), 0);
221                 if (!bp) {
222                         error = ENOMEM;
223                         goto error0;
224                 }
225                 bp->b_pre_io = xfs_agf_write_verify;
226
227                 agf = XFS_BUF_TO_AGF(bp);
228                 agf->agf_magicnum = cpu_to_be32(XFS_AGF_MAGIC);
229                 agf->agf_versionnum = cpu_to_be32(XFS_AGF_VERSION);
230                 agf->agf_seqno = cpu_to_be32(agno);
231                 if (agno == nagcount - 1)
232                         agsize =
233                                 nb -
234                                 (agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
235                 else
236                         agsize = mp->m_sb.sb_agblocks;
237                 agf->agf_length = cpu_to_be32(agsize);
238                 agf->agf_roots[XFS_BTNUM_BNOi] = cpu_to_be32(XFS_BNO_BLOCK(mp));
239                 agf->agf_roots[XFS_BTNUM_CNTi] = cpu_to_be32(XFS_CNT_BLOCK(mp));
240                 agf->agf_levels[XFS_BTNUM_BNOi] = cpu_to_be32(1);
241                 agf->agf_levels[XFS_BTNUM_CNTi] = cpu_to_be32(1);
242                 agf->agf_flfirst = 0;
243                 agf->agf_fllast = cpu_to_be32(XFS_AGFL_SIZE(mp) - 1);
244                 agf->agf_flcount = 0;
245                 tmpsize = agsize - XFS_PREALLOC_BLOCKS(mp);
246                 agf->agf_freeblks = cpu_to_be32(tmpsize);
247                 agf->agf_longest = cpu_to_be32(tmpsize);
248                 error = xfs_bwrite(bp);
249                 xfs_buf_relse(bp);
250                 if (error)
251                         goto error0;
252
253                 /*
254                  * AG freelist header block
255                  */
256                 bp = xfs_growfs_get_hdr_buf(mp,
257                                 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
258                                 XFS_FSS_TO_BB(mp, 1), 0);
259                 if (!bp) {
260                         error = ENOMEM;
261                         goto error0;
262                 }
263                 bp->b_pre_io = xfs_agfl_write_verify;
264
265                 agfl = XFS_BUF_TO_AGFL(bp);
266                 for (bucket = 0; bucket < XFS_AGFL_SIZE(mp); bucket++)
267                         agfl->agfl_bno[bucket] = cpu_to_be32(NULLAGBLOCK);
268
269                 error = xfs_bwrite(bp);
270                 xfs_buf_relse(bp);
271                 if (error)
272                         goto error0;
273
274                 /*
275                  * AG inode header block
276                  */
277                 bp = xfs_growfs_get_hdr_buf(mp,
278                                 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
279                                 XFS_FSS_TO_BB(mp, 1), 0);
280                 if (!bp) {
281                         error = ENOMEM;
282                         goto error0;
283                 }
284                 bp->b_pre_io = xfs_agi_write_verify;
285
286                 agi = XFS_BUF_TO_AGI(bp);
287                 agi->agi_magicnum = cpu_to_be32(XFS_AGI_MAGIC);
288                 agi->agi_versionnum = cpu_to_be32(XFS_AGI_VERSION);
289                 agi->agi_seqno = cpu_to_be32(agno);
290                 agi->agi_length = cpu_to_be32(agsize);
291                 agi->agi_count = 0;
292                 agi->agi_root = cpu_to_be32(XFS_IBT_BLOCK(mp));
293                 agi->agi_level = cpu_to_be32(1);
294                 agi->agi_freecount = 0;
295                 agi->agi_newino = cpu_to_be32(NULLAGINO);
296                 agi->agi_dirino = cpu_to_be32(NULLAGINO);
297                 for (bucket = 0; bucket < XFS_AGI_UNLINKED_BUCKETS; bucket++)
298                         agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO);
299                 error = xfs_bwrite(bp);
300                 xfs_buf_relse(bp);
301                 if (error)
302                         goto error0;
303
304                 /*
305                  * BNO btree root block
306                  */
307                 bp = xfs_growfs_get_hdr_buf(mp,
308                                 XFS_AGB_TO_DADDR(mp, agno, XFS_BNO_BLOCK(mp)),
309                                 BTOBB(mp->m_sb.sb_blocksize), 0);
310
311                 if (!bp) {
312                         error = ENOMEM;
313                         goto error0;
314                 }
315
316                 xfs_btree_init_block(mp, bp, XFS_ABTB_MAGIC, 0, 1, 0);
317                 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
318                 arec->ar_startblock = cpu_to_be32(XFS_PREALLOC_BLOCKS(mp));
319                 arec->ar_blockcount = cpu_to_be32(
320                         agsize - be32_to_cpu(arec->ar_startblock));
321
322                 error = xfs_bwrite(bp);
323                 xfs_buf_relse(bp);
324                 if (error)
325                         goto error0;
326
327                 /*
328                  * CNT btree root block
329                  */
330                 bp = xfs_growfs_get_hdr_buf(mp,
331                                 XFS_AGB_TO_DADDR(mp, agno, XFS_CNT_BLOCK(mp)),
332                                 BTOBB(mp->m_sb.sb_blocksize), 0);
333                 if (!bp) {
334                         error = ENOMEM;
335                         goto error0;
336                 }
337
338                 xfs_btree_init_block(mp, bp, XFS_ABTC_MAGIC, 0, 1, 0);
339                 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
340                 arec->ar_startblock = cpu_to_be32(XFS_PREALLOC_BLOCKS(mp));
341                 arec->ar_blockcount = cpu_to_be32(
342                         agsize - be32_to_cpu(arec->ar_startblock));
343                 nfree += be32_to_cpu(arec->ar_blockcount);
344
345                 error = xfs_bwrite(bp);
346                 xfs_buf_relse(bp);
347                 if (error)
348                         goto error0;
349
350                 /*
351                  * INO btree root block
352                  */
353                 bp = xfs_growfs_get_hdr_buf(mp,
354                                 XFS_AGB_TO_DADDR(mp, agno, XFS_IBT_BLOCK(mp)),
355                                 BTOBB(mp->m_sb.sb_blocksize), 0);
356                 if (!bp) {
357                         error = ENOMEM;
358                         goto error0;
359                 }
360
361                 xfs_btree_init_block(mp, bp, XFS_IBT_MAGIC, 0, 0, 0);
362
363                 error = xfs_bwrite(bp);
364                 xfs_buf_relse(bp);
365                 if (error)
366                         goto error0;
367         }
368         xfs_trans_agblocks_delta(tp, nfree);
369         /*
370          * There are new blocks in the old last a.g.
371          */
372         if (new) {
373                 /*
374                  * Change the agi length.
375                  */
376                 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
377                 if (error) {
378                         goto error0;
379                 }
380                 ASSERT(bp);
381                 agi = XFS_BUF_TO_AGI(bp);
382                 be32_add_cpu(&agi->agi_length, new);
383                 ASSERT(nagcount == oagcount ||
384                        be32_to_cpu(agi->agi_length) == mp->m_sb.sb_agblocks);
385                 xfs_ialloc_log_agi(tp, bp, XFS_AGI_LENGTH);
386                 /*
387                  * Change agf length.
388                  */
389                 error = xfs_alloc_read_agf(mp, tp, agno, 0, &bp);
390                 if (error) {
391                         goto error0;
392                 }
393                 ASSERT(bp);
394                 agf = XFS_BUF_TO_AGF(bp);
395                 be32_add_cpu(&agf->agf_length, new);
396                 ASSERT(be32_to_cpu(agf->agf_length) ==
397                        be32_to_cpu(agi->agi_length));
398
399                 xfs_alloc_log_agf(tp, bp, XFS_AGF_LENGTH);
400                 /*
401                  * Free the new space.
402                  */
403                 error = xfs_free_extent(tp, XFS_AGB_TO_FSB(mp, agno,
404                         be32_to_cpu(agf->agf_length) - new), new);
405                 if (error) {
406                         goto error0;
407                 }
408         }
409
410         /*
411          * Update changed superblock fields transactionally. These are not
412          * seen by the rest of the world until the transaction commit applies
413          * them atomically to the superblock.
414          */
415         if (nagcount > oagcount)
416                 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
417         if (nb > mp->m_sb.sb_dblocks)
418                 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
419                                  nb - mp->m_sb.sb_dblocks);
420         if (nfree)
421                 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree);
422         if (dpct)
423                 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
424         error = xfs_trans_commit(tp, 0);
425         if (error)
426                 return error;
427
428         /* New allocation groups fully initialized, so update mount struct */
429         if (nagimax)
430                 mp->m_maxagi = nagimax;
431         if (mp->m_sb.sb_imax_pct) {
432                 __uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
433                 do_div(icount, 100);
434                 mp->m_maxicount = icount << mp->m_sb.sb_inopblog;
435         } else
436                 mp->m_maxicount = 0;
437         xfs_set_low_space_thresholds(mp);
438
439         /* update secondary superblocks. */
440         for (agno = 1; agno < nagcount; agno++) {
441                 error = 0;
442                 /*
443                  * new secondary superblocks need to be zeroed, not read from
444                  * disk as the contents of the new area we are growing into is
445                  * completely unknown.
446                  */
447                 if (agno < oagcount) {
448                         error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
449                                   XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
450                                   XFS_FSS_TO_BB(mp, 1), 0, &bp,
451                                   xfs_sb_read_verify);
452                 } else {
453                         bp = xfs_trans_get_buf(NULL, mp->m_ddev_targp,
454                                   XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
455                                   XFS_FSS_TO_BB(mp, 1), 0);
456                         if (bp) {
457                                 xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
458                                 bp->b_pre_io = xfs_sb_write_verify;
459                         } else
460                                 error = ENOMEM;
461                 }
462
463                 if (error) {
464                         xfs_warn(mp,
465                 "error %d reading secondary superblock for ag %d",
466                                 error, agno);
467                         break;
468                 }
469                 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, XFS_SB_ALL_BITS);
470
471                 /*
472                  * If we get an error writing out the alternate superblocks,
473                  * just issue a warning and continue.  The real work is
474                  * already done and committed.
475                  */
476                 error = xfs_bwrite(bp);
477                 xfs_buf_relse(bp);
478                 if (error) {
479                         xfs_warn(mp,
480                 "write error %d updating secondary superblock for ag %d",
481                                 error, agno);
482                         break; /* no point in continuing */
483                 }
484         }
485         return error;
486
487  error0:
488         xfs_trans_cancel(tp, XFS_TRANS_ABORT);
489         return error;
490 }
491
492 static int
493 xfs_growfs_log_private(
494         xfs_mount_t             *mp,    /* mount point for filesystem */
495         xfs_growfs_log_t        *in)    /* growfs log input struct */
496 {
497         xfs_extlen_t            nb;
498
499         nb = in->newblocks;
500         if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
501                 return XFS_ERROR(EINVAL);
502         if (nb == mp->m_sb.sb_logblocks &&
503             in->isint == (mp->m_sb.sb_logstart != 0))
504                 return XFS_ERROR(EINVAL);
505         /*
506          * Moving the log is hard, need new interfaces to sync
507          * the log first, hold off all activity while moving it.
508          * Can have shorter or longer log in the same space,
509          * or transform internal to external log or vice versa.
510          */
511         return XFS_ERROR(ENOSYS);
512 }
513
514 /*
515  * protected versions of growfs function acquire and release locks on the mount
516  * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
517  * XFS_IOC_FSGROWFSRT
518  */
519
520
521 int
522 xfs_growfs_data(
523         xfs_mount_t             *mp,
524         xfs_growfs_data_t       *in)
525 {
526         int error;
527
528         if (!capable(CAP_SYS_ADMIN))
529                 return XFS_ERROR(EPERM);
530         if (!mutex_trylock(&mp->m_growlock))
531                 return XFS_ERROR(EWOULDBLOCK);
532         error = xfs_growfs_data_private(mp, in);
533         mutex_unlock(&mp->m_growlock);
534         return error;
535 }
536
537 int
538 xfs_growfs_log(
539         xfs_mount_t             *mp,
540         xfs_growfs_log_t        *in)
541 {
542         int error;
543
544         if (!capable(CAP_SYS_ADMIN))
545                 return XFS_ERROR(EPERM);
546         if (!mutex_trylock(&mp->m_growlock))
547                 return XFS_ERROR(EWOULDBLOCK);
548         error = xfs_growfs_log_private(mp, in);
549         mutex_unlock(&mp->m_growlock);
550         return error;
551 }
552
553 /*
554  * exported through ioctl XFS_IOC_FSCOUNTS
555  */
556
557 int
558 xfs_fs_counts(
559         xfs_mount_t             *mp,
560         xfs_fsop_counts_t       *cnt)
561 {
562         xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
563         spin_lock(&mp->m_sb_lock);
564         cnt->freedata = mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
565         cnt->freertx = mp->m_sb.sb_frextents;
566         cnt->freeino = mp->m_sb.sb_ifree;
567         cnt->allocino = mp->m_sb.sb_icount;
568         spin_unlock(&mp->m_sb_lock);
569         return 0;
570 }
571
572 /*
573  * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
574  *
575  * xfs_reserve_blocks is called to set m_resblks
576  * in the in-core mount table. The number of unused reserved blocks
577  * is kept in m_resblks_avail.
578  *
579  * Reserve the requested number of blocks if available. Otherwise return
580  * as many as possible to satisfy the request. The actual number
581  * reserved are returned in outval
582  *
583  * A null inval pointer indicates that only the current reserved blocks
584  * available  should  be returned no settings are changed.
585  */
586
587 int
588 xfs_reserve_blocks(
589         xfs_mount_t             *mp,
590         __uint64_t              *inval,
591         xfs_fsop_resblks_t      *outval)
592 {
593         __int64_t               lcounter, delta, fdblks_delta;
594         __uint64_t              request;
595
596         /* If inval is null, report current values and return */
597         if (inval == (__uint64_t *)NULL) {
598                 if (!outval)
599                         return EINVAL;
600                 outval->resblks = mp->m_resblks;
601                 outval->resblks_avail = mp->m_resblks_avail;
602                 return 0;
603         }
604
605         request = *inval;
606
607         /*
608          * With per-cpu counters, this becomes an interesting
609          * problem. we needto work out if we are freeing or allocation
610          * blocks first, then we can do the modification as necessary.
611          *
612          * We do this under the m_sb_lock so that if we are near
613          * ENOSPC, we will hold out any changes while we work out
614          * what to do. This means that the amount of free space can
615          * change while we do this, so we need to retry if we end up
616          * trying to reserve more space than is available.
617          *
618          * We also use the xfs_mod_incore_sb() interface so that we
619          * don't have to care about whether per cpu counter are
620          * enabled, disabled or even compiled in....
621          */
622 retry:
623         spin_lock(&mp->m_sb_lock);
624         xfs_icsb_sync_counters_locked(mp, 0);
625
626         /*
627          * If our previous reservation was larger than the current value,
628          * then move any unused blocks back to the free pool.
629          */
630         fdblks_delta = 0;
631         if (mp->m_resblks > request) {
632                 lcounter = mp->m_resblks_avail - request;
633                 if (lcounter  > 0) {            /* release unused blocks */
634                         fdblks_delta = lcounter;
635                         mp->m_resblks_avail -= lcounter;
636                 }
637                 mp->m_resblks = request;
638         } else {
639                 __int64_t       free;
640
641                 free =  mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
642                 if (!free)
643                         goto out; /* ENOSPC and fdblks_delta = 0 */
644
645                 delta = request - mp->m_resblks;
646                 lcounter = free - delta;
647                 if (lcounter < 0) {
648                         /* We can't satisfy the request, just get what we can */
649                         mp->m_resblks += free;
650                         mp->m_resblks_avail += free;
651                         fdblks_delta = -free;
652                 } else {
653                         fdblks_delta = -delta;
654                         mp->m_resblks = request;
655                         mp->m_resblks_avail += delta;
656                 }
657         }
658 out:
659         if (outval) {
660                 outval->resblks = mp->m_resblks;
661                 outval->resblks_avail = mp->m_resblks_avail;
662         }
663         spin_unlock(&mp->m_sb_lock);
664
665         if (fdblks_delta) {
666                 /*
667                  * If we are putting blocks back here, m_resblks_avail is
668                  * already at its max so this will put it in the free pool.
669                  *
670                  * If we need space, we'll either succeed in getting it
671                  * from the free block count or we'll get an enospc. If
672                  * we get a ENOSPC, it means things changed while we were
673                  * calculating fdblks_delta and so we should try again to
674                  * see if there is anything left to reserve.
675                  *
676                  * Don't set the reserved flag here - we don't want to reserve
677                  * the extra reserve blocks from the reserve.....
678                  */
679                 int error;
680                 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
681                                                  fdblks_delta, 0);
682                 if (error == ENOSPC)
683                         goto retry;
684         }
685         return 0;
686 }
687
688 /*
689  * Dump a transaction into the log that contains no real change. This is needed
690  * to be able to make the log dirty or stamp the current tail LSN into the log
691  * during the covering operation.
692  *
693  * We cannot use an inode here for this - that will push dirty state back up
694  * into the VFS and then periodic inode flushing will prevent log covering from
695  * making progress. Hence we log a field in the superblock instead and use a
696  * synchronous transaction to ensure the superblock is immediately unpinned
697  * and can be written back.
698  */
699 int
700 xfs_fs_log_dummy(
701         xfs_mount_t     *mp)
702 {
703         xfs_trans_t     *tp;
704         int             error;
705
706         tp = _xfs_trans_alloc(mp, XFS_TRANS_DUMMY1, KM_SLEEP);
707         error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
708                                         XFS_DEFAULT_LOG_COUNT);
709         if (error) {
710                 xfs_trans_cancel(tp, 0);
711                 return error;
712         }
713
714         /* log the UUID because it is an unchanging field */
715         xfs_mod_sb(tp, XFS_SB_UUID);
716         xfs_trans_set_sync(tp);
717         return xfs_trans_commit(tp, 0);
718 }
719
720 int
721 xfs_fs_goingdown(
722         xfs_mount_t     *mp,
723         __uint32_t      inflags)
724 {
725         switch (inflags) {
726         case XFS_FSOP_GOING_FLAGS_DEFAULT: {
727                 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
728
729                 if (sb && !IS_ERR(sb)) {
730                         xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
731                         thaw_bdev(sb->s_bdev, sb);
732                 }
733
734                 break;
735         }
736         case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
737                 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
738                 break;
739         case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
740                 xfs_force_shutdown(mp,
741                                 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
742                 break;
743         default:
744                 return XFS_ERROR(EINVAL);
745         }
746
747         return 0;
748 }
749
750 /*
751  * Force a shutdown of the filesystem instantly while keeping the filesystem
752  * consistent. We don't do an unmount here; just shutdown the shop, make sure
753  * that absolutely nothing persistent happens to this filesystem after this
754  * point.
755  */
756 void
757 xfs_do_force_shutdown(
758         xfs_mount_t     *mp,
759         int             flags,
760         char            *fname,
761         int             lnnum)
762 {
763         int             logerror;
764
765         logerror = flags & SHUTDOWN_LOG_IO_ERROR;
766
767         if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
768                 xfs_notice(mp,
769         "%s(0x%x) called from line %d of file %s.  Return address = 0x%p",
770                         __func__, flags, lnnum, fname, __return_address);
771         }
772         /*
773          * No need to duplicate efforts.
774          */
775         if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
776                 return;
777
778         /*
779          * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
780          * queue up anybody new on the log reservations, and wakes up
781          * everybody who's sleeping on log reservations to tell them
782          * the bad news.
783          */
784         if (xfs_log_force_umount(mp, logerror))
785                 return;
786
787         if (flags & SHUTDOWN_CORRUPT_INCORE) {
788                 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
789     "Corruption of in-memory data detected.  Shutting down filesystem");
790                 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
791                         xfs_stack_trace();
792         } else if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
793                 if (logerror) {
794                         xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
795                 "Log I/O Error Detected.  Shutting down filesystem");
796                 } else if (flags & SHUTDOWN_DEVICE_REQ) {
797                         xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
798                 "All device paths lost.  Shutting down filesystem");
799                 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
800                         xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
801                 "I/O Error Detected. Shutting down filesystem");
802                 }
803         }
804         if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
805                 xfs_alert(mp,
806         "Please umount the filesystem and rectify the problem(s)");
807         }
808 }