blob: 0a3b822d9f8c87fc77b22245921ccd473696f5a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110022#include "xfs_log_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100026#include "xfs_defer.h"
Dave Chinner8f661932014-06-06 15:15:59 +100027#include "xfs_da_format.h"
28#include "xfs_da_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110030#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_btree.h"
34#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_alloc.h"
36#include "xfs_ialloc.h"
37#include "xfs_fsops.h"
38#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_trans_space.h"
40#include "xfs_rtalloc.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000041#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110042#include "xfs_log.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110043#include "xfs_filestream.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * File system operations
47 */
48
49int
50xfs_fs_geometry(
51 xfs_mount_t *mp,
52 xfs_fsop_geom_t *geo,
53 int new_version)
54{
Dan Rosenbergc4d0c3b2011-02-14 13:45:28 +000055
56 memset(geo, 0, sizeof(*geo));
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 geo->blocksize = mp->m_sb.sb_blocksize;
59 geo->rtextsize = mp->m_sb.sb_rextsize;
60 geo->agblocks = mp->m_sb.sb_agblocks;
61 geo->agcount = mp->m_sb.sb_agcount;
62 geo->logblocks = mp->m_sb.sb_logblocks;
63 geo->sectsize = mp->m_sb.sb_sectsize;
64 geo->inodesize = mp->m_sb.sb_inodesize;
65 geo->imaxpct = mp->m_sb.sb_imax_pct;
66 geo->datablocks = mp->m_sb.sb_dblocks;
67 geo->rtblocks = mp->m_sb.sb_rblocks;
68 geo->rtextents = mp->m_sb.sb_rextents;
69 geo->logstart = mp->m_sb.sb_logstart;
70 ASSERT(sizeof(geo->uuid)==sizeof(mp->m_sb.sb_uuid));
71 memcpy(geo->uuid, &mp->m_sb.sb_uuid, sizeof(mp->m_sb.sb_uuid));
72 if (new_version >= 2) {
73 geo->sunit = mp->m_sb.sb_unit;
74 geo->swidth = mp->m_sb.sb_width;
75 }
76 if (new_version >= 3) {
77 geo->version = XFS_FSOP_GEOM_VERSION;
Dave Chinner263997a2014-05-20 07:46:40 +100078 geo->flags = XFS_FSOP_GEOM_FLAGS_NLINK |
Dave Chinner5d074a42014-05-20 07:46:55 +100079 XFS_FSOP_GEOM_FLAGS_DIRV2 |
Eric Sandeen62118702008-03-06 13:44:28 +110080 (xfs_sb_version_hasattr(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 XFS_FSOP_GEOM_FLAGS_ATTR : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110082 (xfs_sb_version_hasquota(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 XFS_FSOP_GEOM_FLAGS_QUOTA : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110084 (xfs_sb_version_hasalign(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 XFS_FSOP_GEOM_FLAGS_IALIGN : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110086 (xfs_sb_version_hasdalign(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 XFS_FSOP_GEOM_FLAGS_DALIGN : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110088 (xfs_sb_version_hasextflgbit(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 XFS_FSOP_GEOM_FLAGS_EXTFLG : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110090 (xfs_sb_version_hassector(&mp->m_sb) ?
Nathan Scottd8cc8902005-11-02 10:34:53 +110091 XFS_FSOP_GEOM_FLAGS_SECTOR : 0) |
Barry Naujok189f4bf2008-05-21 16:58:55 +100092 (xfs_sb_version_hasasciici(&mp->m_sb) ?
93 XFS_FSOP_GEOM_FLAGS_DIRV2CI : 0) |
David Chinner92821e22007-05-24 15:26:31 +100094 (xfs_sb_version_haslazysbcount(&mp->m_sb) ?
95 XFS_FSOP_GEOM_FLAGS_LAZYSB : 0) |
Eric Sandeen62118702008-03-06 13:44:28 +110096 (xfs_sb_version_hasattr2(&mp->m_sb) ?
Eric Sandeen69a58a42012-10-09 14:11:45 -050097 XFS_FSOP_GEOM_FLAGS_ATTR2 : 0) |
98 (xfs_sb_version_hasprojid32bit(&mp->m_sb) ?
Dave Chinner74137fff2013-05-27 16:38:26 +100099 XFS_FSOP_GEOM_FLAGS_PROJID32 : 0) |
100 (xfs_sb_version_hascrc(&mp->m_sb) ?
Mark Tinguely2900a572013-10-02 16:00:06 -0500101 XFS_FSOP_GEOM_FLAGS_V5SB : 0) |
102 (xfs_sb_version_hasftype(&mp->m_sb) ?
Brian Foster0c153c12014-04-24 16:01:41 +1000103 XFS_FSOP_GEOM_FLAGS_FTYPE : 0) |
104 (xfs_sb_version_hasfinobt(&mp->m_sb) ?
Brian Foster502a4e72015-05-29 08:58:32 +1000105 XFS_FSOP_GEOM_FLAGS_FINOBT : 0) |
106 (xfs_sb_version_hassparseinodes(&mp->m_sb) ?
107 XFS_FSOP_GEOM_FLAGS_SPINODES : 0);
Eric Sandeen62118702008-03-06 13:44:28 +1100108 geo->logsectsize = xfs_sb_version_hassector(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 mp->m_sb.sb_logsectsize : BBSIZE;
110 geo->rtsectsize = mp->m_sb.sb_blocksize;
Dave Chinner8f661932014-06-06 15:15:59 +1000111 geo->dirblocksize = mp->m_dir_geo->blksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 if (new_version >= 4) {
114 geo->flags |=
Eric Sandeen62118702008-03-06 13:44:28 +1100115 (xfs_sb_version_haslogv2(&mp->m_sb) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 XFS_FSOP_GEOM_FLAGS_LOGV2 : 0);
117 geo->logsunit = mp->m_sb.sb_logsunit;
118 }
119 return 0;
120}
121
Dave Chinnerfd236832012-11-12 22:53:59 +1100122static struct xfs_buf *
123xfs_growfs_get_hdr_buf(
124 struct xfs_mount *mp,
125 xfs_daddr_t blkno,
126 size_t numblks,
Dave Chinner1813dd62012-11-14 17:54:40 +1100127 int flags,
128 const struct xfs_buf_ops *ops)
Dave Chinnerfd236832012-11-12 22:53:59 +1100129{
130 struct xfs_buf *bp;
131
132 bp = xfs_buf_get_uncached(mp->m_ddev_targp, numblks, flags);
133 if (!bp)
134 return NULL;
135
136 xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
137 bp->b_bn = blkno;
138 bp->b_maps[0].bm_bn = blkno;
Dave Chinner1813dd62012-11-14 17:54:40 +1100139 bp->b_ops = ops;
Dave Chinnerfd236832012-11-12 22:53:59 +1100140
141 return bp;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static int
145xfs_growfs_data_private(
146 xfs_mount_t *mp, /* mount point for filesystem */
147 xfs_growfs_data_t *in) /* growfs data input struct */
148{
149 xfs_agf_t *agf;
Dave Chinnerde497682012-11-12 22:54:00 +1100150 struct xfs_agfl *agfl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 xfs_agi_t *agi;
152 xfs_agnumber_t agno;
153 xfs_extlen_t agsize;
154 xfs_extlen_t tmpsize;
155 xfs_alloc_rec_t *arec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 xfs_buf_t *bp;
157 int bucket;
158 int dpct;
Eric Sandeen59e5a0e2013-10-11 14:14:05 -0500159 int error, saved_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 xfs_agnumber_t nagcount;
161 xfs_agnumber_t nagimax = 0;
162 xfs_rfsblock_t nb, nb_mod;
163 xfs_rfsblock_t new;
164 xfs_rfsblock_t nfree;
165 xfs_agnumber_t oagcount;
166 int pct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 xfs_trans_t *tp;
168
169 nb = in->newblocks;
170 pct = in->imaxpct;
171 if (nb < mp->m_sb.sb_dblocks || pct < 0 || pct > 100)
Dave Chinner24513372014-06-25 14:58:08 +1000172 return -EINVAL;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000173 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
174 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 dpct = pct - mp->m_sb.sb_imax_pct;
Dave Chinnerba372672014-10-02 09:05:32 +1000176 error = xfs_buf_read_uncached(mp->m_ddev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +1000177 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
Dave Chinnerba372672014-10-02 09:05:32 +1000178 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
179 if (error)
Dave Chinnereab4e632012-11-12 22:54:02 +1100180 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 xfs_buf_relse(bp);
182
183 new = nb; /* use new as a temporary here */
184 nb_mod = do_div(new, mp->m_sb.sb_agblocks);
185 nagcount = new + (nb_mod != 0);
186 if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
187 nagcount--;
Eric Sandeene6da7c92009-05-23 14:30:12 -0500188 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (nb < mp->m_sb.sb_dblocks)
Dave Chinner24513372014-06-25 14:58:08 +1000190 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 new = nb - mp->m_sb.sb_dblocks;
193 oagcount = mp->m_sb.sb_agcount;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000194
195 /* allocate the new per-ag structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (nagcount > oagcount) {
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000197 error = xfs_initialize_perag(mp, nagcount, &nagimax);
198 if (error)
199 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000201
Christoph Hellwig253f4912016-04-06 09:19:55 +1000202 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
203 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
204 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000207 /*
208 * Write new AG headers to disk. Non-transactional, but written
209 * synchronously so they are completed prior to the growfs transaction
210 * being logged.
211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 nfree = 0;
213 for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) {
Dave Chinnerf94c4452013-11-21 15:41:06 +1100214 __be32 *agfl_bno;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /*
Dave Chinnerde497682012-11-12 22:54:00 +1100217 * AG freespace header block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Dave Chinnerfd236832012-11-12 22:53:59 +1100219 bp = xfs_growfs_get_hdr_buf(mp,
220 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100221 XFS_FSS_TO_BB(mp, 1), 0,
222 &xfs_agf_buf_ops);
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000223 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000224 error = -ENOMEM;
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000225 goto error0;
226 }
Dave Chinnerfd236832012-11-12 22:53:59 +1100227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 agf = XFS_BUF_TO_AGF(bp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100229 agf->agf_magicnum = cpu_to_be32(XFS_AGF_MAGIC);
230 agf->agf_versionnum = cpu_to_be32(XFS_AGF_VERSION);
231 agf->agf_seqno = cpu_to_be32(agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (agno == nagcount - 1)
233 agsize =
234 nb -
235 (agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
236 else
237 agsize = mp->m_sb.sb_agblocks;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100238 agf->agf_length = cpu_to_be32(agsize);
239 agf->agf_roots[XFS_BTNUM_BNOi] = cpu_to_be32(XFS_BNO_BLOCK(mp));
240 agf->agf_roots[XFS_BTNUM_CNTi] = cpu_to_be32(XFS_CNT_BLOCK(mp));
241 agf->agf_levels[XFS_BTNUM_BNOi] = cpu_to_be32(1);
242 agf->agf_levels[XFS_BTNUM_CNTi] = cpu_to_be32(1);
Dave Chinnerad747e32016-04-06 07:06:20 +1000243 agf->agf_flfirst = cpu_to_be32(1);
244 agf->agf_fllast = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 agf->agf_flcount = 0;
Darrick J. Wong80180262016-08-03 11:31:47 +1000246 tmpsize = agsize - mp->m_ag_prealloc_blocks;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100247 agf->agf_freeblks = cpu_to_be32(tmpsize);
248 agf->agf_longest = cpu_to_be32(tmpsize);
Dave Chinner4e0e6042013-04-03 16:11:13 +1100249 if (xfs_sb_version_hascrc(&mp->m_sb))
Dave Chinnerac383de2015-08-19 10:31:41 +1000250 uuid_copy(&agf->agf_uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinner4e0e6042013-04-03 16:11:13 +1100251
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000252 error = xfs_bwrite(bp);
253 xfs_buf_relse(bp);
254 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto error0;
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /*
Dave Chinnerde497682012-11-12 22:54:00 +1100258 * AG freelist header block
259 */
260 bp = xfs_growfs_get_hdr_buf(mp,
261 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100262 XFS_FSS_TO_BB(mp, 1), 0,
263 &xfs_agfl_buf_ops);
Dave Chinnerde497682012-11-12 22:54:00 +1100264 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000265 error = -ENOMEM;
Dave Chinnerde497682012-11-12 22:54:00 +1100266 goto error0;
267 }
268
269 agfl = XFS_BUF_TO_AGFL(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100270 if (xfs_sb_version_hascrc(&mp->m_sb)) {
271 agfl->agfl_magicnum = cpu_to_be32(XFS_AGFL_MAGIC);
272 agfl->agfl_seqno = cpu_to_be32(agno);
Dave Chinnerac383de2015-08-19 10:31:41 +1000273 uuid_copy(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100274 }
Dave Chinnerf94c4452013-11-21 15:41:06 +1100275
276 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, bp);
Dave Chinnerde497682012-11-12 22:54:00 +1100277 for (bucket = 0; bucket < XFS_AGFL_SIZE(mp); bucket++)
Dave Chinnerf94c4452013-11-21 15:41:06 +1100278 agfl_bno[bucket] = cpu_to_be32(NULLAGBLOCK);
Dave Chinnerde497682012-11-12 22:54:00 +1100279
280 error = xfs_bwrite(bp);
281 xfs_buf_relse(bp);
282 if (error)
283 goto error0;
284
285 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * AG inode header block
287 */
Dave Chinnerfd236832012-11-12 22:53:59 +1100288 bp = xfs_growfs_get_hdr_buf(mp,
289 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100290 XFS_FSS_TO_BB(mp, 1), 0,
291 &xfs_agi_buf_ops);
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000292 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000293 error = -ENOMEM;
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000294 goto error0;
295 }
Dave Chinnerfd236832012-11-12 22:53:59 +1100296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 agi = XFS_BUF_TO_AGI(bp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100298 agi->agi_magicnum = cpu_to_be32(XFS_AGI_MAGIC);
299 agi->agi_versionnum = cpu_to_be32(XFS_AGI_VERSION);
300 agi->agi_seqno = cpu_to_be32(agno);
301 agi->agi_length = cpu_to_be32(agsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 agi->agi_count = 0;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100303 agi->agi_root = cpu_to_be32(XFS_IBT_BLOCK(mp));
304 agi->agi_level = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 agi->agi_freecount = 0;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100306 agi->agi_newino = cpu_to_be32(NULLAGINO);
307 agi->agi_dirino = cpu_to_be32(NULLAGINO);
Dave Chinner983d09f2013-04-03 16:11:15 +1100308 if (xfs_sb_version_hascrc(&mp->m_sb))
Dave Chinnerac383de2015-08-19 10:31:41 +1000309 uuid_copy(&agi->agi_uuid, &mp->m_sb.sb_meta_uuid);
Brian Fostera3fa5162014-04-24 16:01:39 +1000310 if (xfs_sb_version_hasfinobt(&mp->m_sb)) {
311 agi->agi_free_root = cpu_to_be32(XFS_FIBT_BLOCK(mp));
312 agi->agi_free_level = cpu_to_be32(1);
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 for (bucket = 0; bucket < XFS_AGI_UNLINKED_BUCKETS; bucket++)
Christoph Hellwig16259e72005-11-02 15:11:25 +1100315 agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO);
Dave Chinner983d09f2013-04-03 16:11:15 +1100316
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000317 error = xfs_bwrite(bp);
318 xfs_buf_relse(bp);
319 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 goto error0;
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /*
323 * BNO btree root block
324 */
Dave Chinnerfd236832012-11-12 22:53:59 +1100325 bp = xfs_growfs_get_hdr_buf(mp,
326 XFS_AGB_TO_DADDR(mp, agno, XFS_BNO_BLOCK(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100327 BTOBB(mp->m_sb.sb_blocksize), 0,
328 &xfs_allocbt_buf_ops);
Dave Chinnerfd236832012-11-12 22:53:59 +1100329
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000330 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000331 error = -ENOMEM;
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000332 goto error0;
333 }
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600334
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500335 if (xfs_sb_version_hascrc(&mp->m_sb))
336 xfs_btree_init_block(mp, bp, XFS_ABTB_CRC_MAGIC, 0, 1,
337 agno, XFS_BTREE_CRC_BLOCKS);
338 else
339 xfs_btree_init_block(mp, bp, XFS_ABTB_MAGIC, 0, 1,
340 agno, 0);
341
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600342 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
Darrick J. Wong80180262016-08-03 11:31:47 +1000343 arec->ar_startblock = cpu_to_be32(mp->m_ag_prealloc_blocks);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100344 arec->ar_blockcount = cpu_to_be32(
345 agsize - be32_to_cpu(arec->ar_startblock));
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600346
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000347 error = xfs_bwrite(bp);
348 xfs_buf_relse(bp);
349 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto error0;
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * CNT btree root block
354 */
Dave Chinnerfd236832012-11-12 22:53:59 +1100355 bp = xfs_growfs_get_hdr_buf(mp,
356 XFS_AGB_TO_DADDR(mp, agno, XFS_CNT_BLOCK(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100357 BTOBB(mp->m_sb.sb_blocksize), 0,
358 &xfs_allocbt_buf_ops);
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000359 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000360 error = -ENOMEM;
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000361 goto error0;
362 }
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600363
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500364 if (xfs_sb_version_hascrc(&mp->m_sb))
365 xfs_btree_init_block(mp, bp, XFS_ABTC_CRC_MAGIC, 0, 1,
366 agno, XFS_BTREE_CRC_BLOCKS);
367 else
368 xfs_btree_init_block(mp, bp, XFS_ABTC_MAGIC, 0, 1,
369 agno, 0);
370
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600371 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
Darrick J. Wong80180262016-08-03 11:31:47 +1000372 arec->ar_startblock = cpu_to_be32(mp->m_ag_prealloc_blocks);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100373 arec->ar_blockcount = cpu_to_be32(
374 agsize - be32_to_cpu(arec->ar_startblock));
375 nfree += be32_to_cpu(arec->ar_blockcount);
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600376
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000377 error = xfs_bwrite(bp);
378 xfs_buf_relse(bp);
379 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto error0;
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /*
383 * INO btree root block
384 */
Dave Chinnerfd236832012-11-12 22:53:59 +1100385 bp = xfs_growfs_get_hdr_buf(mp,
386 XFS_AGB_TO_DADDR(mp, agno, XFS_IBT_BLOCK(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100387 BTOBB(mp->m_sb.sb_blocksize), 0,
388 &xfs_inobt_buf_ops);
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000389 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000390 error = -ENOMEM;
Chandra Seetharamanb5229502011-09-07 19:37:54 +0000391 goto error0;
392 }
Dave Chinnerfd236832012-11-12 22:53:59 +1100393
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500394 if (xfs_sb_version_hascrc(&mp->m_sb))
395 xfs_btree_init_block(mp, bp, XFS_IBT_CRC_MAGIC, 0, 0,
396 agno, XFS_BTREE_CRC_BLOCKS);
397 else
398 xfs_btree_init_block(mp, bp, XFS_IBT_MAGIC, 0, 0,
399 agno, 0);
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600400
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000401 error = xfs_bwrite(bp);
402 xfs_buf_relse(bp);
403 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto error0;
Brian Fostera3fa5162014-04-24 16:01:39 +1000405
406 /*
407 * FINO btree root block
408 */
409 if (xfs_sb_version_hasfinobt(&mp->m_sb)) {
410 bp = xfs_growfs_get_hdr_buf(mp,
411 XFS_AGB_TO_DADDR(mp, agno, XFS_FIBT_BLOCK(mp)),
412 BTOBB(mp->m_sb.sb_blocksize), 0,
413 &xfs_inobt_buf_ops);
414 if (!bp) {
Dave Chinner24513372014-06-25 14:58:08 +1000415 error = -ENOMEM;
Brian Fostera3fa5162014-04-24 16:01:39 +1000416 goto error0;
417 }
418
419 if (xfs_sb_version_hascrc(&mp->m_sb))
420 xfs_btree_init_block(mp, bp, XFS_FIBT_CRC_MAGIC,
421 0, 0, agno,
422 XFS_BTREE_CRC_BLOCKS);
423 else
424 xfs_btree_init_block(mp, bp, XFS_FIBT_MAGIC, 0,
425 0, agno, 0);
426
427 error = xfs_bwrite(bp);
428 xfs_buf_relse(bp);
429 if (error)
430 goto error0;
431 }
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434 xfs_trans_agblocks_delta(tp, nfree);
435 /*
436 * There are new blocks in the old last a.g.
437 */
438 if (new) {
439 /*
440 * Change the agi length.
441 */
442 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
443 if (error) {
444 goto error0;
445 }
446 ASSERT(bp);
447 agi = XFS_BUF_TO_AGI(bp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800448 be32_add_cpu(&agi->agi_length, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ASSERT(nagcount == oagcount ||
Christoph Hellwig16259e72005-11-02 15:11:25 +1100450 be32_to_cpu(agi->agi_length) == mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 xfs_ialloc_log_agi(tp, bp, XFS_AGI_LENGTH);
452 /*
453 * Change agf length.
454 */
455 error = xfs_alloc_read_agf(mp, tp, agno, 0, &bp);
456 if (error) {
457 goto error0;
458 }
459 ASSERT(bp);
460 agf = XFS_BUF_TO_AGF(bp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800461 be32_add_cpu(&agf->agf_length, new);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100462 ASSERT(be32_to_cpu(agf->agf_length) ==
463 be32_to_cpu(agi->agi_length));
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000464
Tim Shimmin0164af52007-06-18 16:50:08 +1000465 xfs_alloc_log_agf(tp, bp, XFS_AGF_LENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Free the new space.
468 */
469 error = xfs_free_extent(tp, XFS_AGB_TO_FSB(mp, agno,
Christoph Hellwig16259e72005-11-02 15:11:25 +1100470 be32_to_cpu(agf->agf_length) - new), new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (error) {
472 goto error0;
473 }
474 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000475
476 /*
477 * Update changed superblock fields transactionally. These are not
478 * seen by the rest of the world until the transaction commit applies
479 * them atomically to the superblock.
480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (nagcount > oagcount)
482 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
483 if (nb > mp->m_sb.sb_dblocks)
484 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
485 nb - mp->m_sb.sb_dblocks);
486 if (nfree)
487 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree);
488 if (dpct)
489 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
Christoph Hellwigf8079b82015-02-05 11:13:21 +1100490 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000491 error = xfs_trans_commit(tp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000492 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return error;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* New allocation groups fully initialized, so update mount struct */
496 if (nagimax)
497 mp->m_maxagi = nagimax;
498 if (mp->m_sb.sb_imax_pct) {
499 __uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
500 do_div(icount, 100);
501 mp->m_maxicount = icount << mp->m_sb.sb_inopblog;
502 } else
503 mp->m_maxicount = 0;
Dave Chinner055388a2011-01-04 11:35:03 +1100504 xfs_set_low_space_thresholds(mp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000505
506 /* update secondary superblocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 for (agno = 1; agno < nagcount; agno++) {
Dave Chinner1375cb62012-10-09 14:50:52 +1100508 error = 0;
509 /*
510 * new secondary superblocks need to be zeroed, not read from
511 * disk as the contents of the new area we are growing into is
512 * completely unknown.
513 */
514 if (agno < oagcount) {
515 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
Dave Chinner98021822012-11-12 22:54:03 +1100517 XFS_FSS_TO_BB(mp, 1), 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100518 &xfs_sb_buf_ops);
Dave Chinner1375cb62012-10-09 14:50:52 +1100519 } else {
520 bp = xfs_trans_get_buf(NULL, mp->m_ddev_targp,
521 XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
522 XFS_FSS_TO_BB(mp, 1), 0);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100523 if (bp) {
Dave Chinner1813dd62012-11-14 17:54:40 +1100524 bp->b_ops = &xfs_sb_buf_ops;
Dave Chinner1375cb62012-10-09 14:50:52 +1100525 xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100526 } else
Dave Chinner24513372014-06-25 14:58:08 +1000527 error = -ENOMEM;
Dave Chinner1375cb62012-10-09 14:50:52 +1100528 }
529
Eric Sandeen59e5a0e2013-10-11 14:14:05 -0500530 /*
531 * If we get an error reading or writing alternate superblocks,
532 * continue. xfs_repair chooses the "best" superblock based
533 * on most matches; if we break early, we'll leave more
534 * superblocks un-updated than updated, and xfs_repair may
535 * pick them over the properly-updated primary.
536 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100538 xfs_warn(mp,
539 "error %d reading secondary superblock for ag %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 error, agno);
Eric Sandeen59e5a0e2013-10-11 14:14:05 -0500541 saved_error = error;
542 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
Dave Chinner4d11a402015-01-22 09:10:26 +1100544 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb);
Dave Chinner98021822012-11-12 22:54:03 +1100545
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000546 error = xfs_bwrite(bp);
547 xfs_buf_relse(bp);
548 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100549 xfs_warn(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 "write error %d updating secondary superblock for ag %d",
551 error, agno);
Eric Sandeen59e5a0e2013-10-11 14:14:05 -0500552 saved_error = error;
553 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 }
Eric Sandeen59e5a0e2013-10-11 14:14:05 -0500556 return saved_error ? saved_error : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 error0:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000559 xfs_trans_cancel(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return error;
561}
562
563static int
564xfs_growfs_log_private(
565 xfs_mount_t *mp, /* mount point for filesystem */
566 xfs_growfs_log_t *in) /* growfs log input struct */
567{
568 xfs_extlen_t nb;
569
570 nb = in->newblocks;
571 if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
Dave Chinner24513372014-06-25 14:58:08 +1000572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (nb == mp->m_sb.sb_logblocks &&
574 in->isint == (mp->m_sb.sb_logstart != 0))
Dave Chinner24513372014-06-25 14:58:08 +1000575 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /*
577 * Moving the log is hard, need new interfaces to sync
578 * the log first, hold off all activity while moving it.
579 * Can have shorter or longer log in the same space,
580 * or transform internal to external log or vice versa.
581 */
Dave Chinner24513372014-06-25 14:58:08 +1000582 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585/*
586 * protected versions of growfs function acquire and release locks on the mount
587 * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
588 * XFS_IOC_FSGROWFSRT
589 */
590
591
592int
593xfs_growfs_data(
594 xfs_mount_t *mp,
595 xfs_growfs_data_t *in)
596{
597 int error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600598
599 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000600 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000601 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000602 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 error = xfs_growfs_data_private(mp, in);
Christoph Hellwig52785112015-02-16 11:49:23 +1100604 /*
605 * Increment the generation unconditionally, the error could be from
606 * updating the secondary superblocks, in which case the new size
607 * is live already.
608 */
609 mp->m_generation++;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000610 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return error;
612}
613
614int
615xfs_growfs_log(
616 xfs_mount_t *mp,
617 xfs_growfs_log_t *in)
618{
619 int error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600620
621 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000622 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000623 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000624 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 error = xfs_growfs_log_private(mp, in);
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000626 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return error;
628}
629
630/*
631 * exported through ioctl XFS_IOC_FSCOUNTS
632 */
633
634int
635xfs_fs_counts(
636 xfs_mount_t *mp,
637 xfs_fsop_counts_t *cnt)
638{
Dave Chinner501ab322015-02-23 21:19:28 +1100639 cnt->allocino = percpu_counter_read_positive(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +1100640 cnt->freeino = percpu_counter_read_positive(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100641 cnt->freedata = percpu_counter_read_positive(&mp->m_fdblocks) -
642 XFS_ALLOC_SET_ASIDE(mp);
Dave Chinner501ab322015-02-23 21:19:28 +1100643
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000644 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 cnt->freertx = mp->m_sb.sb_frextents;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000646 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
648}
649
650/*
651 * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
652 *
653 * xfs_reserve_blocks is called to set m_resblks
654 * in the in-core mount table. The number of unused reserved blocks
Nathan Scottc41564b2006-03-29 08:55:14 +1000655 * is kept in m_resblks_avail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 *
657 * Reserve the requested number of blocks if available. Otherwise return
658 * as many as possible to satisfy the request. The actual number
659 * reserved are returned in outval
660 *
661 * A null inval pointer indicates that only the current reserved blocks
662 * available should be returned no settings are changed.
663 */
664
665int
666xfs_reserve_blocks(
667 xfs_mount_t *mp,
668 __uint64_t *inval,
669 xfs_fsop_resblks_t *outval)
670{
Brian Foster408fd482016-06-21 11:53:28 +1000671 __int64_t lcounter, delta;
672 __int64_t fdblks_delta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 __uint64_t request;
Brian Foster408fd482016-06-21 11:53:28 +1000674 __int64_t free;
675 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /* If inval is null, report current values and return */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (inval == (__uint64_t *)NULL) {
David Chinner84e1e992007-06-18 16:50:27 +1000679 if (!outval)
Dave Chinner24513372014-06-25 14:58:08 +1000680 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 outval->resblks = mp->m_resblks;
682 outval->resblks_avail = mp->m_resblks_avail;
Jesper Juhl014c2542006-01-15 02:37:08 +0100683 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
686 request = *inval;
David Chinnerdbcabad2007-02-10 18:36:17 +1100687
688 /*
Brian Foster408fd482016-06-21 11:53:28 +1000689 * With per-cpu counters, this becomes an interesting problem. we need
690 * to work out if we are freeing or allocation blocks first, then we can
691 * do the modification as necessary.
David Chinnerdbcabad2007-02-10 18:36:17 +1100692 *
Brian Foster408fd482016-06-21 11:53:28 +1000693 * We do this under the m_sb_lock so that if we are near ENOSPC, we will
694 * hold out any changes while we work out what to do. This means that
695 * the amount of free space can change while we do this, so we need to
696 * retry if we end up trying to reserve more space than is available.
David Chinnerdbcabad2007-02-10 18:36:17 +1100697 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000698 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
701 * If our previous reservation was larger than the current value,
Brian Foster408fd482016-06-21 11:53:28 +1000702 * then move any unused blocks back to the free pool. Modify the resblks
703 * counters directly since we shouldn't have any problems unreserving
704 * space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (mp->m_resblks > request) {
707 lcounter = mp->m_resblks_avail - request;
708 if (lcounter > 0) { /* release unused blocks */
David Chinnerdbcabad2007-02-10 18:36:17 +1100709 fdblks_delta = lcounter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 mp->m_resblks_avail -= lcounter;
711 }
712 mp->m_resblks = request;
Brian Foster408fd482016-06-21 11:53:28 +1000713 if (fdblks_delta) {
714 spin_unlock(&mp->m_sb_lock);
715 error = xfs_mod_fdblocks(mp, fdblks_delta, 0);
716 spin_lock(&mp->m_sb_lock);
717 }
David Chinner4be536d2006-09-07 14:26:50 +1000718
Brian Foster408fd482016-06-21 11:53:28 +1000719 goto out;
720 }
721
722 /*
723 * If the request is larger than the current reservation, reserve the
724 * blocks before we update the reserve counters. Sample m_fdblocks and
725 * perform a partial reservation if the request exceeds free space.
726 */
727 error = -ENOSPC;
728 do {
Dave Chinner0d485ad2015-02-23 21:22:03 +1100729 free = percpu_counter_sum(&mp->m_fdblocks) -
730 XFS_ALLOC_SET_ASIDE(mp);
David Chinnerdbcabad2007-02-10 18:36:17 +1100731 if (!free)
Brian Foster408fd482016-06-21 11:53:28 +1000732 break;
David Chinnerdbcabad2007-02-10 18:36:17 +1100733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 delta = request - mp->m_resblks;
David Chinner4be536d2006-09-07 14:26:50 +1000735 lcounter = free - delta;
Brian Foster408fd482016-06-21 11:53:28 +1000736 if (lcounter < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* We can't satisfy the request, just get what we can */
Brian Foster408fd482016-06-21 11:53:28 +1000738 fdblks_delta = free;
739 else
740 fdblks_delta = delta;
741
742 /*
743 * We'll either succeed in getting space from the free block
744 * count or we'll get an ENOSPC. If we get a ENOSPC, it means
745 * things changed while we were calculating fdblks_delta and so
746 * we should try again to see if there is anything left to
747 * reserve.
748 *
749 * Don't set the reserved flag here - we don't want to reserve
750 * the extra reserve blocks from the reserve.....
751 */
752 spin_unlock(&mp->m_sb_lock);
753 error = xfs_mod_fdblocks(mp, -fdblks_delta, 0);
754 spin_lock(&mp->m_sb_lock);
755 } while (error == -ENOSPC);
756
757 /*
758 * Update the reserve counters if blocks have been successfully
759 * allocated.
760 */
761 if (!error && fdblks_delta) {
762 mp->m_resblks += fdblks_delta;
763 mp->m_resblks_avail += fdblks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Brian Foster408fd482016-06-21 11:53:28 +1000765
David Chinnerdbcabad2007-02-10 18:36:17 +1100766out:
David Chinner84e1e992007-06-18 16:50:27 +1000767 if (outval) {
768 outval->resblks = mp->m_resblks;
769 outval->resblks_avail = mp->m_resblks_avail;
770 }
David Chinnerdbcabad2007-02-10 18:36:17 +1100771
Brian Foster408fd482016-06-21 11:53:28 +1000772 spin_unlock(&mp->m_sb_lock);
773 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776int
777xfs_fs_goingdown(
778 xfs_mount_t *mp,
779 __uint32_t inflags)
780{
781 switch (inflags) {
782 case XFS_FSOP_GOING_FLAGS_DEFAULT: {
Christoph Hellwigb267ce92007-08-30 17:21:30 +1000783 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Christoph Hellwigf33c6792005-11-25 16:41:47 +1100785 if (sb && !IS_ERR(sb)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000786 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 thaw_bdev(sb->s_bdev, sb);
788 }
Barry Naujok189f4bf2008-05-21 16:58:55 +1000789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
791 }
792 case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000793 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795 case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000796 xfs_force_shutdown(mp,
797 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
799 default:
Dave Chinner24513372014-06-25 14:58:08 +1000800 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
803 return 0;
804}
Dave Chinner2af51f32012-04-23 15:59:03 +1000805
806/*
807 * Force a shutdown of the filesystem instantly while keeping the filesystem
808 * consistent. We don't do an unmount here; just shutdown the shop, make sure
809 * that absolutely nothing persistent happens to this filesystem after this
810 * point.
811 */
812void
813xfs_do_force_shutdown(
814 xfs_mount_t *mp,
815 int flags,
816 char *fname,
817 int lnnum)
818{
819 int logerror;
820
821 logerror = flags & SHUTDOWN_LOG_IO_ERROR;
822
823 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
824 xfs_notice(mp,
825 "%s(0x%x) called from line %d of file %s. Return address = 0x%p",
826 __func__, flags, lnnum, fname, __return_address);
827 }
828 /*
829 * No need to duplicate efforts.
830 */
831 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
832 return;
833
834 /*
835 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
836 * queue up anybody new on the log reservations, and wakes up
837 * everybody who's sleeping on log reservations to tell them
838 * the bad news.
839 */
840 if (xfs_log_force_umount(mp, logerror))
841 return;
842
843 if (flags & SHUTDOWN_CORRUPT_INCORE) {
844 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
845 "Corruption of in-memory data detected. Shutting down filesystem");
846 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
847 xfs_stack_trace();
848 } else if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
849 if (logerror) {
850 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
851 "Log I/O Error Detected. Shutting down filesystem");
852 } else if (flags & SHUTDOWN_DEVICE_REQ) {
853 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
854 "All device paths lost. Shutting down filesystem");
855 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
856 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
857 "I/O Error Detected. Shutting down filesystem");
858 }
859 }
860 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
861 xfs_alert(mp,
862 "Please umount the filesystem and rectify the problem(s)");
863 }
864}